Skip to content

Commit

Permalink
fix: remove double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Hector Fernandez committed Feb 4, 2020
1 parent a1e5a17 commit 733f2ed
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
22 changes: 11 additions & 11 deletions stable/azuredisk-csi-driver/templates/csi-azuredisk-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
- name: csi-provisioner
image: "{{ .Values.image.csiProvisioner.repository }}:{{ .Values.image.csiProvisioner.tag }}"
args:
- "--provisioner=disk.csi.azure.com"
- --provisioner=disk.csi.azure.com
- --csi-address=$(ADDRESS)
- --timeout=120s
- --retry-interval-start=1s
Expand All @@ -33,7 +33,7 @@ spec:
{{- end}}
- --enable-leader-election
- --leader-election-type=leases
- "--v=5"
- --v=5
env:
- name: ADDRESS
value: /csi/csi.sock
Expand All @@ -50,8 +50,8 @@ spec:
- --retry-interval-start=1s
- --retry-interval-max=5m
- --worker-threads=20
- "-leader-election"
- "-leader-election-type=leases"
- -leader-election
- -leader-election-type=leases
env:
- name: ADDRESS
value: /csi/csi.sock
Expand All @@ -75,7 +75,7 @@ spec:
image: "{{ .Values.image.csiSnapshotter.repository }}:{{ .Values.image.csiSnapshotter.tag }}"
args:
- --csi-address=$(ADDRESS)
- "-leader-election"
- -leader-election
env:
- name: ADDRESS
value: /csi/csi.sock
Expand All @@ -85,9 +85,9 @@ spec:
- name: csi-resizer
image: "{{ .Values.image.csiResizer.repository }}:{{ .Values.image.csiResizer.tag }}"
args:
- "-csi-address=$(ADDRESS)"
- "-v=5"
- "-leader-election"
- -csi-address=$(ADDRESS)
- -v=5
- -leader-election
env:
- name: ADDRESS
value: /csi/csi.sock
Expand All @@ -106,9 +106,9 @@ spec:
- name: azuredisk
image: "{{ .Values.image.azuredisk.repository }}:{{ .Values.image.azuredisk.tag }}"
args:
- "--v=5"
- "--endpoint=$(CSI_ENDPOINT)"
- "--nodeid=$(KUBE_NODE_NAME)"
- --v=5
- --endpoint=$(CSI_ENDPOINT)
- --nodeid=$(KUBE_NODE_NAME)
ports:
- containerPort: 9602
name: healthz
Expand Down
6 changes: 3 additions & 3 deletions stable/azuredisk-csi-driver/templates/csi-azuredisk-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ spec:
- name: azuredisk
image: "{{ .Values.image.azuredisk.repository }}:{{ .Values.image.azuredisk.tag }}"
args:
- "--v=5"
- "--endpoint=$(CSI_ENDPOINT)"
- "--nodeid=$(KUBE_NODE_NAME)"
- --v=5
- --endpoint=$(CSI_ENDPOINT)
- --nodeid=$(KUBE_NODE_NAME)
ports:
- containerPort: 9602
name: healthz
Expand Down

0 comments on commit 733f2ed

Please sign in to comment.