Skip to content

Commit 1f5f557

Browse files
authored
Merge pull request #969 from kubernetes-sigs/typos
chore: fix typos in driver parameters
2 parents 5162109 + f84cf1e commit 1f5f557

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed
3 Bytes
Binary file not shown.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ spec:
112112
- "--user-agent-suffix={{ .Values.driver.userAgentSuffix }}"
113113
- "--allow-empty-cloud-config={{ .Values.node.allowEmptyCloudConfig }}"
114114
- "--enable-get-volume-stats={{ .Values.feature.enableGetVolumeStats }}"
115-
- "--allow-inline-volume-key-access-with-idenitity={{ .Values.node.allowInlineVolumeKeyAccessWithIdentity }}"
115+
- "--allow-inline-volume-key-access-with-identity={{ .Values.node.allowInlineVolumeKeyAccessWithIdentity }}"
116116
ports:
117117
- containerPort: {{ .Values.node.livenessProbe.healthPort }}
118118
name: healthz

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ spec:
106106
- "--allow-empty-cloud-config={{ .Values.node.allowEmptyCloudConfig }}"
107107
- "--enable-get-volume-stats={{ .Values.feature.enableGetVolumeStats }}"
108108
- "--mount-permissions={{ .Values.linux.mountPermissions }}"
109-
- "--allow-inline-volume-key-access-with-idenitity={{ .Values.node.allowInlineVolumeKeyAccessWithIdentity }}"
109+
- "--allow-inline-volume-key-access-with-identity={{ .Values.node.allowInlineVolumeKeyAccessWithIdentity }}"
110110
ports:
111111
- containerPort: {{ .Values.node.livenessProbe.healthPort }}
112112
name: healthz

pkg/azurefileplugin/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var (
4949
allowEmptyCloudConfig = flag.Bool("allow-empty-cloud-config", true, "allow running driver without cloud config")
5050
enableGetVolumeStats = flag.Bool("enable-get-volume-stats", true, "allow GET_VOLUME_STATS on agent node")
5151
mountPermissions = flag.Uint64("mount-permissions", 0777, "mounted folder permissions")
52-
allowInlineVolumeKeyAccessWithIdentity = flag.Bool("allow-inline-volume-key-access-with-idenitity", false, "allow accessing storage account key using cluster identity for inline volume")
52+
allowInlineVolumeKeyAccessWithIdentity = flag.Bool("allow-inline-volume-key-access-with-identity", false, "allow accessing storage account key using cluster identity for inline volume")
5353
)
5454

5555
func main() {

0 commit comments

Comments
 (0)