Calico: use --allow-version-mismatch in calicoctl.sh to allow upgrades (#7873)
This commit is contained in:
parent
dfd35892f2
commit
0ac364dfae
2 changed files with 2 additions and 2 deletions
|
@ -3,4 +3,4 @@ ETCD_ENDPOINTS={{ etcd_access_addresses }} \
|
||||||
ETCD_CA_CERT_FILE={{ calico_cert_dir }}/ca_cert.crt \
|
ETCD_CA_CERT_FILE={{ calico_cert_dir }}/ca_cert.crt \
|
||||||
ETCD_CERT_FILE={{ calico_cert_dir }}/cert.crt \
|
ETCD_CERT_FILE={{ calico_cert_dir }}/cert.crt \
|
||||||
ETCD_KEY_FILE={{ calico_cert_dir }}/key.pem \
|
ETCD_KEY_FILE={{ calico_cert_dir }}/key.pem \
|
||||||
{{ bin_dir }}/calicoctl "$@"
|
{{ bin_dir }}/calicoctl {% if calico_version is version('v3.20.0', '>=') %}--allow-version-mismatch{% endif %} "$@"
|
||||||
|
|
|
@ -5,4 +5,4 @@ KUBECONFIG=/etc/kubernetes/admin.conf \
|
||||||
{% else %}
|
{% else %}
|
||||||
KUBECONFIG=/etc/cni/net.d/calico-kubeconfig \
|
KUBECONFIG=/etc/cni/net.d/calico-kubeconfig \
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ bin_dir }}/calicoctl "$@"
|
{{ bin_dir }}/calicoctl {% if calico_version is version('v3.20.0', '>=') %}--allow-version-mismatch{% endif %} "$@"
|
||||||
|
|
Loading…
Reference in a new issue