mirror of https://github.com/easzlab/kubeasz.git
修复 calico 网络 backend 设置为 vxlan none 时,calico 部署失败 #959
parent
e97c65ce5f
commit
88bf729126
|
@ -17,6 +17,7 @@
|
|||
copy: src={{ item }} dest=/opt/kube/images/
|
||||
with_fileglob:
|
||||
- "{{ base_dir }}/down/coredns*.tar"
|
||||
- "{{ base_dir }}/down/k8s-dns-node-cache*.tar"
|
||||
- "{{ base_dir }}/down/dashboard*.tar"
|
||||
- "{{ base_dir }}/down/metrics-scraper*.tar"
|
||||
- "{{ base_dir }}/down/metrics-server*.tar"
|
||||
|
|
|
@ -363,7 +363,9 @@ spec:
|
|||
command:
|
||||
- /bin/calico-node
|
||||
- -felix-live
|
||||
{% if CALICO_NETWORKING_BACKEND == "brid" %}
|
||||
- -bird-live
|
||||
{% endif %}
|
||||
periodSeconds: 10
|
||||
initialDelaySeconds: 10
|
||||
failureThreshold: 6
|
||||
|
@ -372,7 +374,9 @@ spec:
|
|||
command:
|
||||
- /bin/calico-node
|
||||
- -felix-ready
|
||||
{% if CALICO_NETWORKING_BACKEND == "brid" %}
|
||||
- -bird-ready
|
||||
{% endif %}
|
||||
periodSeconds: 10
|
||||
volumeMounts:
|
||||
- mountPath: /lib/modules
|
||||
|
|
|
@ -206,7 +206,9 @@ spec:
|
|||
exec:
|
||||
command:
|
||||
- /bin/calico-node
|
||||
{% if CALICO_NETWORKING_BACKEND == "brid" %}
|
||||
- -bird-ready
|
||||
{% endif %}
|
||||
- -felix-ready
|
||||
periodSeconds: 10
|
||||
volumeMounts:
|
||||
|
|
|
@ -244,7 +244,9 @@ spec:
|
|||
exec:
|
||||
command:
|
||||
- /bin/calico-node
|
||||
{% if CALICO_NETWORKING_BACKEND == "brid" %}
|
||||
- -bird-ready
|
||||
{% endif %}
|
||||
- -felix-ready
|
||||
periodSeconds: 10
|
||||
volumeMounts:
|
||||
|
|
|
@ -337,7 +337,9 @@ spec:
|
|||
command:
|
||||
- /bin/calico-node
|
||||
- -felix-live
|
||||
{% if CALICO_NETWORKING_BACKEND == "brid" %}
|
||||
- -bird-live
|
||||
{% endif %}
|
||||
periodSeconds: 10
|
||||
initialDelaySeconds: 10
|
||||
failureThreshold: 6
|
||||
|
@ -345,7 +347,9 @@ spec:
|
|||
exec:
|
||||
command:
|
||||
- /bin/calico-node
|
||||
{% if CALICO_NETWORKING_BACKEND == "brid" %}
|
||||
- -bird-ready
|
||||
{% endif %}
|
||||
- -felix-ready
|
||||
periodSeconds: 10
|
||||
volumeMounts:
|
||||
|
|
Loading…
Reference in New Issue