Skip to content

Commit e670d2f

Browse files
committed
rename
1 parent f8f4279 commit e670d2f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
-1 Bytes
Binary file not shown.

charts/latest/azurefile-csi-driver/templates/csi-azurefile-node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ spec:
9696
value: "{{ .Values.linux.kubelet }}"
9797
- name: MIGRATE_K8S_REPO
9898
value: "{{ .Values.node.azurefileProxy.migrateK8sRepo }}"
99-
- name: SETUP_MI_AUTH
99+
- name: ENABLE_MI_AUTH
100100
value: "{{ .Values.node.enableManagedIdentityAuth }}"
101101
volumeMounts:
102102
- name: host-usr

deploy/csi-azurefile-node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ spec:
5858
value: "true"
5959
- name: INSTALL_AZNFS_MOUNT
6060
value: "true"
61-
- name: SETUP_MI_AUTH
61+
- name: ENABLE_MI_AUTH
6262
value: "true"
6363
volumeMounts:
6464
- name: host-usr

pkg/azurefile-proxy/init.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
set -xe
1818

1919
MIGRATE_K8S_REPO=${MIGRATE_K8S_REPO:-false}
20-
SETUP_MI_AUTH=${SETUP_MI_AUTH:-true}
20+
ENABLE_MI_AUTH=${ENABLE_MI_AUTH:-true}
2121

2222
KUBELET_PATH=${KUBELET_PATH:-/var/lib/kubelet}
2323
if [ "$KUBELET_PATH" != "/var/lib/kubelet" ];then
@@ -28,7 +28,7 @@ fi
2828

2929
HOST_CMD="nsenter --mount=/proc/1/ns/mnt"
3030

31-
if [ "$SETUP_MI_AUTH" = "true" ];then
31+
if [ "$ENABLE_MI_AUTH" = "true" ];then
3232
echo "set up /etc/krb5.conf on host"
3333
printf '[libdefaults]\ndefault_ccache_name = FILE:/var/lib/kubelet/kerberos/krb5cc_%s\n' "%{uid}" > /host/etc/krb5.conf
3434

0 commit comments

Comments
 (0)