Enables Calico serviceAccount token monitoring and update of /etc/cni/net.d/calico-kubeconfig if need be. (#7586)
Since K8S 1.21, BoundServiceAccountTokenVolume feature gate is in beta stage, thus activated by default (anyone who follows CSI guidelines has enabled AllAlpha and faced the issue before 1.21). With this feature, SA tokens are regenerated every hour. As a consequence for Calico CNI, token in /etc/cni/net.d/calico-kubeconfig copied from /var/run/secrets/kubernetes.io/serviceaccount in install-cni initContainer expires after one hour and any pod creation fails due to unauthorization. Calico pods need to be restarted so that /etc/cni/net.d/calico-kubeconfig is updated with the new SA token.pull/7606/head
parent
8c0a2741ae
commit
afbabebfd5
|
@ -259,6 +259,8 @@ spec:
|
||||||
value: "true"
|
value: "true"
|
||||||
- name: FELIX_IGNORELOOSERPF
|
- name: FELIX_IGNORELOOSERPF
|
||||||
value: "{{ calico_node_ignorelooserpf }}"
|
value: "{{ calico_node_ignorelooserpf }}"
|
||||||
|
- name: CALICO_MANAGE_CNI
|
||||||
|
value: "true"
|
||||||
{% if calico_node_extra_envs is defined %}
|
{% if calico_node_extra_envs is defined %}
|
||||||
{% for key in calico_node_extra_envs %}
|
{% for key in calico_node_extra_envs %}
|
||||||
- name: {{ key }}
|
- name: {{ key }}
|
||||||
|
@ -309,6 +311,8 @@ spec:
|
||||||
- name: xtables-lock
|
- name: xtables-lock
|
||||||
mountPath: /run/xtables.lock
|
mountPath: /run/xtables.lock
|
||||||
readOnly: false
|
readOnly: false
|
||||||
|
- mountPath: /host/etc/cni/net.d
|
||||||
|
name: cni-net-dir
|
||||||
{% if typha_secure %}
|
{% if typha_secure %}
|
||||||
- name: typha-client
|
- name: typha-client
|
||||||
mountPath: /etc/typha-client
|
mountPath: /etc/typha-client
|
||||||
|
|
Loading…
Reference in New Issue