File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
azurefile-csi-driver/templates Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 96
96
value : " {{ .Values.linux.kubelet }}"
97
97
- name : MIGRATE_K8S_REPO
98
98
value : " {{ .Values.node.azurefileProxy.migrateK8sRepo }}"
99
- - name : SETUP_MI_AUTH
99
+ - name : ENABLE_MI_AUTH
100
100
value : " {{ .Values.node.enableManagedIdentityAuth }}"
101
101
volumeMounts :
102
102
- name : host-usr
Original file line number Diff line number Diff line change 58
58
value : " true"
59
59
- name : INSTALL_AZNFS_MOUNT
60
60
value : " true"
61
- - name : SETUP_MI_AUTH
61
+ - name : ENABLE_MI_AUTH
62
62
value : " true"
63
63
volumeMounts :
64
64
- name : host-usr
Original file line number Diff line number Diff line change 17
17
set -xe
18
18
19
19
MIGRATE_K8S_REPO=${MIGRATE_K8S_REPO:- false}
20
- SETUP_MI_AUTH =${SETUP_MI_AUTH :- true}
20
+ ENABLE_MI_AUTH =${ENABLE_MI_AUTH :- true}
21
21
22
22
KUBELET_PATH=${KUBELET_PATH:-/ var/ lib/ kubelet}
23
23
if [ " $KUBELET_PATH " != " /var/lib/kubelet" ]; then
28
28
29
29
HOST_CMD=" nsenter --mount=/proc/1/ns/mnt"
30
30
31
- if [ " $SETUP_MI_AUTH " = " true" ]; then
31
+ if [ " $ENABLE_MI_AUTH " = " true" ]; then
32
32
echo " set up /etc/krb5.conf on host"
33
33
printf ' [libdefaults]\ndefault_ccache_name = FILE:/var/lib/kubelet/kerberos/krb5cc_%s\n' " %{uid}" > /host/etc/krb5.conf
34
34
You can’t perform that action at this time.
0 commit comments