Browse Source

Fix liveness probe for cilium operator (#6016)

pull/6034/head
Qasim Sarfraz 4 years ago
committed by GitHub
parent
commit
52edd4c9bc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions
  1. 6
      roles/network_plugin/cilium/templates/cilium-deploy.yml.j2

6
roles/network_plugin/cilium/templates/cilium-deploy.yml.j2

@ -89,6 +89,11 @@ spec:
name: cilium-operator
livenessProbe:
httpGet:
{% if cilium_enable_ipv4 %}
host: 127.0.0.1
{% else %}
host: host: '[::1]'
{% endif %}
path: /healthz
port: 9234
scheme: HTTP
@ -107,6 +112,7 @@ spec:
restartPolicy: Always
serviceAccount: cilium-operator
serviceAccountName: cilium-operator
hostNetwork: true
volumes:
# To read the etcd config stored in config maps
- configMap:

Loading…
Cancel
Save