Browse Source

Fix calico health checks

pull/3255/head
mlushpenko 6 years ago
parent
commit
f958b32c83
1 changed files with 2 additions and 0 deletions
  1. 2
      roles/network_plugin/calico/templates/calico-node.yml.j2

2
roles/network_plugin/calico/templates/calico-node.yml.j2

@ -136,6 +136,7 @@ spec:
memory: {{ calico_node_memory_requests }} memory: {{ calico_node_memory_requests }}
livenessProbe: livenessProbe:
httpGet: httpGet:
host: 127.0.0.1
path: /liveness path: /liveness
port: 9099 port: 9099
periodSeconds: 10 periodSeconds: 10
@ -143,6 +144,7 @@ spec:
failureThreshold: 6 failureThreshold: 6
readinessProbe: readinessProbe:
httpGet: httpGet:
host: 127.0.0.1
path: /readiness path: /readiness
port: 9099 port: 9099
periodSeconds: 10 periodSeconds: 10

Loading…
Cancel
Save