Skip to content

Instantly share code, notes, and snippets.

@funkytaco
Forked from danehans/01_ocp_route_ep_test
Created June 2, 2020 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save funkytaco/3801908bf63a9a85f84235e07e79ab0c to your computer and use it in GitHub Desktop.
Save funkytaco/3801908bf63a9a85f84235e07e79ab0c to your computer and use it in GitHub Desktop.
ocp_route_ep_test
# A test to see if a route can bind to endpoints w/o a svc.
# Create an endpoints
apiVersion: v1
kind: Endpoints
metadata:
labels:
app: console
name: console-test
namespace: openshift-console
subsets:
- addresses:
- ip: 10.128.0.30
nodeName: ip-10-0-170-196.us-west-2.compute.internal
targetRef:
kind: Pod
name: console-6c75fbff49-ldgr6
namespace: openshift-console
- ip: 10.130.0.46
nodeName: ip-10-0-147-240.us-west-2.compute.internal
targetRef:
kind: Pod
name: console-6c75fbff49-w9kvf
namespace: openshift-console
ports:
- name: https
port: 8443
protocol: TCP
# Create a route
apiVersion: route.openshift.io/v1
kind: Route
metadata:
labels:
app: console
name: console-test
namespace: openshift-console
spec:
host: console-test-openshift-console.apps.dhansen.devcluster.openshift.com
port:
targetPort: https
tls:
insecureEdgeTerminationPolicy: Redirect
termination: reencrypt
to:
kind: Service
name: console-test
weight: 100
wildcardPolicy: None
# Route is admitted:
$ oc get route/console-test -n openshift-console -o yaml
apiVersion: route.openshift.io/v1
kind: Route
metadata:
creationTimestamp: "2019-12-18T00:02:57Z"
labels:
app: console
name: console-test
namespace: openshift-console
resourceVersion: "513261"
selfLink: /apis/route.openshift.io/v1/namespaces/openshift-console/routes/console-test
uid: ea99c899-a984-491a-9175-0f9de6174366
spec:
host: console-test-openshift-console.apps.dhansen.devcluster.openshift.com
port:
targetPort: https
tls:
insecureEdgeTerminationPolicy: Redirect
termination: reencrypt
to:
kind: Service
name: console-test
weight: 100
wildcardPolicy: None
status:
ingress:
- conditions:
- lastTransitionTime: "2019-12-18T00:02:57Z"
status: "True"
type: Admitted
host: console-test-openshift-console.apps.dhansen.devcluster.openshift.com
routerCanonicalHostname: apps.dhansen.devcluster.openshift.com
routerName: default
wildcardPolicy: None
# Access the route
$ curl -k https://console-test-openshift-console.apps.dhansen.devcluster.openshift.com/
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
/*!
* Bootstrap v3.3.5 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
h1 {
font-size: 1.7em;
font-weight: 400;
line-height: 1.3;
margin: 0.68em 0;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.66666667;
font-size: 13px;
color: #333333;
background-color: #ffffff;
margin: 2em 1em;
}
p {
margin: 0 0 10px;
font-size: 13px;
}
.alert.alert-info {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
background-color: #f5f5f5;
border-color: #8b8d8f;
color: #363636;
margin-top: 30px;
}
.alert p {
padding-left: 35px;
}
a {
color: #0088ce;
}
ul {
position: relative;
padding-left: 51px;
}
p.info {
position: relative;
font-size: 15px;
margin-bottom: 10px;
}
p.info:before, p.info:after {
content: "";
position: absolute;
top: 9%;
left: 0;
}
p.info:before {
content: "i";
left: 3px;
width: 20px;
height: 20px;
font-family: serif;
font-size: 15px;
font-weight: bold;
line-height: 21px;
text-align: center;
color: #fff;
background: #4d5258;
border-radius: 16px;
}
@media (min-width: 768px) {
body {
margin: 4em 3em;
}
h1 {
font-size: 2.15em;}
}
</style>
</head>
<body>
<div>
<h1>Application is not available</h1>
<p>The application is currently not serving requests at this endpoint. It may not have been started or is still starting.</p>
<div class="alert alert-info">
<p class="info">
Possible reasons you are seeing this page:
</p>
<ul>
<li>
<strong>The host doesn't exist.</strong>
Make sure the hostname was typed correctly and that a route matching this hostname exists.
</li>
<li>
<strong>The host exists, but doesn't have a matching path.</strong>
Check if the URL path was typed correctly and that the route was created using the desired path.
</li>
<li>
<strong>Route and path matches, but all pods are down.</strong>
Make sure that the resources exposed by this route (pods, services, deployment configs, etc) have at least one pod running.
</li>
</ul>
</div>
</div>
</body>
</html>
# I get the same route behavior even after creating a new deployment for console:
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
annotations:
console.openshift.io/console-config-version: "14436"
console.openshift.io/image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:089bafb850384d5f1a04bf2db6e99f8981e79be7c7e0828640ae973e4549c558
console.openshift.io/oauth-secret-version: "14452"
console.openshift.io/proxy-config-version: "432"
console.openshift.io/service-ca-config-version: "14448"
console.openshift.io/trusted-ca-config-version: "14457"
deployment.kubernetes.io/revision: "2"
operator.openshift.io/pull-spec: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:089bafb850384d5f1a04bf2db6e99f8981e79be7c7e0828640ae973e4549c558
labels:
app: console-test
component: ui
name: console-test
namespace: openshift-console
spec:
progressDeadlineSeconds: 600
replicas: 2
revisionHistoryLimit: 10
selector:
matchLabels:
app: console-test
component: ui
strategy:
rollingUpdate:
maxSurge: 25%
maxUnavailable: 25%
type: RollingUpdate
template:
metadata:
annotations:
console.openshift.io/console-config-version: "14436"
console.openshift.io/image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:089bafb850384d5f1a04bf2db6e99f8981e79be7c7e0828640ae973e4549c558
console.openshift.io/oauth-secret-version: "14452"
console.openshift.io/proxy-config-version: "432"
console.openshift.io/service-ca-config-version: "14448"
console.openshift.io/trusted-ca-config-version: "14457"
operator.openshift.io/pull-spec: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:089bafb850384d5f1a04bf2db6e99f8981e79be7c7e0828640ae973e4549c558
creationTimestamp: null
labels:
app: console-test
component: ui
name: console
spec:
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchLabels:
app: console-test
topologyKey: kubernetes.io/hostname
weight: 100
containers:
- command:
- /opt/bridge/bin/bridge
- --public-dir=/opt/bridge/static
- --config=/var/console-config/console-config.yaml
- --service-ca-file=/var/service-ca/service-ca.crt
image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:089bafb850384d5f1a04bf2db6e99f8981e79be7c7e0828640ae973e4549c558
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 3
httpGet:
path: /health
port: 8443
scheme: HTTPS
initialDelaySeconds: 150
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
name: console
ports:
- containerPort: 443
name: https
protocol: TCP
readinessProbe:
failureThreshold: 3
httpGet:
path: /health
port: 8443
scheme: HTTPS
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
resources:
requests:
cpu: 10m
memory: 100Mi
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: FallbackToLogsOnError
volumeMounts:
- mountPath: /var/serving-cert
name: console-serving-cert
readOnly: true
- mountPath: /var/oauth-config
name: console-oauth-config
readOnly: true
- mountPath: /var/console-config
name: console-config
readOnly: true
- mountPath: /var/service-ca
name: service-ca
readOnly: true
- mountPath: /etc/pki/ca-trust/extracted/pem
name: trusted-ca-bundle
readOnly: true
dnsPolicy: ClusterFirst
nodeSelector:
node-role.kubernetes.io/master: ""
priorityClassName: system-cluster-critical
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30
tolerations:
- effect: NoSchedule
key: node-role.kubernetes.io/master
operator: Exists
- effect: NoExecute
key: node.kubernetes.io/unreachable
operator: Exists
tolerationSeconds: 120
- effect: NoExecute
key: node.kubernetes.io/not-reachable
operator: Exists
tolerationSeconds: 120
volumes:
- name: console-serving-cert
secret:
defaultMode: 420
secretName: console-serving-cert
- name: console-oauth-config
secret:
defaultMode: 420
secretName: console-oauth-config
- configMap:
defaultMode: 420
name: console-config
name: console-config
- configMap:
defaultMode: 420
name: service-ca
name: service-ca
- configMap:
defaultMode: 420
items:
- key: ca-bundle.crt
path: tls-ca-bundle.pem
name: trusted-ca-bundle
name: trusted-ca-bundle
# All cluster operators are reporting available=true:
$ oc get co
NAME VERSION AVAILABLE PROGRESSING DEGRADED SINCE
authentication 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
cloud-credential 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
cluster-autoscaler 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
console 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
dns 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
image-registry 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
ingress 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
insights 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
kube-apiserver 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
kube-controller-manager 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
kube-scheduler 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
machine-api 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
machine-config 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
marketplace 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
monitoring 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
network 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
node-tuning 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
openshift-apiserver 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
openshift-controller-manager 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
openshift-samples 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
operator-lifecycle-manager 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
operator-lifecycle-manager-catalog 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
operator-lifecycle-manager-packageserver 4.4.0-0.nightly-2019-12-13-135802 True False False 12h
service-ca 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
service-catalog-apiserver 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
service-catalog-controller-manager 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
storage 4.4.0-0.nightly-2019-12-13-135802 True False False 31h
$ oc get po -n openshift-ingress
NAME READY STATUS RESTARTS AGE
router-default-55f67c4879-2wl9k 1/1 Running 0 31h
router-default-55f67c4879-qzxd7 1/1 Running 0 31h
$ oc logs router-default-55f67c4879-qzxd7 -n openshift-ingress
I1216 17:18:47.345429 1 template.go:297] router "level"=0 "msg"="starting router" "version"="majorFromGit: \nminorFromGit: \ncommitFromGit: e5718cc05ce23c8486121539a35bfc893b43a223\nversionFromGit: 4.0.0-87-ge5718cc\ngitTreeState: clean\nbuildDate: 2019-12-09T18:16:22Z\n"
I1216 17:18:47.347363 1 metrics.go:153] metrics "level"=0 "msg"="router health and metrics port listening on HTTP and HTTPS" "address"="0.0.0.0:1936"
I1216 17:18:47.354198 1 router.go:294] template "level"=0 "msg"="watching for changes" "path"="/etc/pki/tls/private"
E1216 17:18:47.355397 1 haproxy.go:395] can't scrape HAProxy: dial unix /var/lib/haproxy/run/haproxy.sock: connect: no such file or directory
I1216 17:18:47.375265 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:18:47.375303 1 router.go:257] router "level"=0 "msg"="router is including routes in all namespaces"
I1216 17:18:47.605839 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:18:52.643751 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:18:59.179806 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:19:04.156754 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:19:09.156765 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:19:16.163109 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:19:24.733801 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:19:41.048682 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:19:46.021334 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:19:51.022924 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:19:56.027357 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:20:01.717567 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:20:06.707311 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:20:11.713333 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:20:16.708004 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:20:24.593732 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:20:29.544354 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:20:50.213507 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:20:55.188528 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:21:00.234887 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:21:15.103512 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:21:20.486131 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:21:25.476977 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:21:30.473779 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:21:46.509379 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:21:51.527072 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:21:56.512355 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:22:03.062744 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:22:12.455799 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:22:17.435926 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:22:25.035409 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:22:30.005646 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:23:11.748368 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:23:16.726794 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:23:21.738029 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:23:38.975622 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:23:43.737809 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:23:48.734186 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:23:55.857545 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:24:00.813179 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:24:17.543330 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:24:22.523276 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:25:02.563752 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:25:07.436425 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:39:35.026660 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 17:40:10.847987 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 21:15:20.467221 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 21:15:25.422457 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 21:16:11.839428 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1216 21:16:16.816482 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 06:15:42.347738 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 06:15:47.279999 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 06:16:17.724467 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 06:16:22.703817 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 08:15:46.591772 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 08:15:51.504474 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 08:16:23.860516 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 08:16:28.845372 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:02:00.895678 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:02:28.920366 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:02:33.888004 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:02:39.133749 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:02:43.909267 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:03:47.671645 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:03:52.659380 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:03:57.636421 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:04:02.644244 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:04:35.102600 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:04:40.100771 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:05:52.170725 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:06:10.228457 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:06:15.102972 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:06:20.106137 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:06:25.105090 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:06:30.337516 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:06:35.308795 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:06:40.307392 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:07:01.545157 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:07:06.512747 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:07:11.530474 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:07:17.692460 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:07:30.417938 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:07:47.783799 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:07:53.775015 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:08:09.554278 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:08:14.530546 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:08:19.536349 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:08:53.506829 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:09:26.925438 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:09:33.523639 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:09:38.522716 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:09:58.506194 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:10:03.472377 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:11:16.872736 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:11:28.757293 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:11:56.505557 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:12:01.483235 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
W1217 12:13:06.907914 1 reflector.go:299] github.com/openshift/router/pkg/router/template/service_lookup.go:32: watch of *v1.Service ended with: too old resource version: 319216 (322932)
I1217 12:13:14.226379 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 12:13:19.204876 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 14:16:00.871932 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 14:16:05.846837 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 14:16:49.349855 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 14:16:54.340419 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:16:04.028338 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:16:09.000132 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:16:28.180720 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:16:33.166049 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:50:00.902292 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:50:14.951957 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:50:19.934001 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:51:33.349343 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:51:38.329285 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:51:48.141874 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:52:07.868057 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:52:12.850475 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
E1217 16:53:25.020780 1 limiter.go:140] error reloading router: waitid: no child processes
- Proxy protocol on, checking http://localhost:80 ...
- Health check ok : 0 retry attempt(s).
I1217 16:53:32.104004 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:54:01.882074 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:54:06.716810 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
W1217 16:55:11.926413 1 reflector.go:299] github.com/openshift/router/pkg/router/template/service_lookup.go:32: watch of *v1.Service ended with: too old resource version: 388362 (397970)
I1217 16:55:19.656025 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:55:24.962212 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
E1217 16:55:41.670240 1 limiter.go:140] error reloading router: wait: no child processes
- Proxy protocol on, checking http://localhost:80 ...
- Health check ok : 0 retry attempt(s).
I1217 16:55:46.662098 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 16:55:51.652878 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 17:16:07.156776 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 17:16:12.146745 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 17:16:35.344774 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 17:16:40.309969 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 22:16:23.488856 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 22:16:28.459402 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 22:17:09.534390 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 22:17:14.487702 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1217 23:59:39.586062 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1218 00:00:16.215818 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1218 00:00:21.209943 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1218 00:02:57.668601 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1218 00:20:15.644350 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1218 00:20:35.765018 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1218 00:26:26.190576 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
I1218 00:30:19.387413 1 router.go:548] template "level"=0 "msg"="router reloaded" "output"=" - Proxy protocol on, checking http://localhost:80 ...\n - Health check ok : 0 retry attempt(s).\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment