Skip to content
Snippets Groups Projects
Unverified Commit cc507d7a authored by Sergey's avatar Sergey Committed by GitHub
Browse files

disable bird-check flag for probes of calico-node pods when...

disable bird-check flag for probes of calico-node pods when calico_network_backend is not 'bird'. (#6217)
parent 7c0fbe29
No related branches found
No related tags found
No related merge requests found
...@@ -284,7 +284,9 @@ spec: ...@@ -284,7 +284,9 @@ spec:
command: command:
- /bin/calico-node - /bin/calico-node
- -felix-live - -felix-live
{% if calico_network_backend|default("bird") == "bird" %}
- -bird-live - -bird-live
{% endif %}
{% endif %} {% endif %}
initialDelaySeconds: 5 initialDelaySeconds: 5
failureThreshold: 6 failureThreshold: 6
...@@ -299,7 +301,9 @@ spec: ...@@ -299,7 +301,9 @@ spec:
exec: exec:
command: command:
- /bin/calico-node - /bin/calico-node
{% if calico_network_backend|default("bird") == "bird" %}
- -bird-ready - -bird-ready
{% endif %}
- -felix-ready - -felix-ready
{% endif %} {% endif %}
volumeMounts: volumeMounts:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment