Skip to content

Commit

Permalink
feat(awsebscsiprovisioner): updated awsebscsiprovisioner flags
Browse files Browse the repository at this point in the history
- updated args as mentioned in comments
- updated container versions as mentioned in the comments

D2IQ-64990 #comment updated awsebscsiprovisioner pod arg
  • Loading branch information
sebbrandt87 committed Mar 18, 2020
1 parent 563defe commit 313ae3e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions stable/awsebscsiprovisioner/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ spec:
privileged: true
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
args:
- node
- --endpoint=$(CSI_ENDPOINT)
- --logtostderr
- --v=5
Expand Down
6 changes: 6 additions & 0 deletions stable/awsebscsiprovisioner/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ spec:
- name: ebs-plugin
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
args :
- controller
- --endpoint=$(CSI_ENDPOINT)
- --logtostderr
- --v=5
Expand Down Expand Up @@ -74,6 +75,8 @@ spec:
{{- if .Values.provisioner.enableVolumeScheduling }}
- --feature-gates=Topology=true
{{- end}}
- --enable-leader-election
- --leader-election-type=leases
env:
- name: ADDRESS
value: /var/lib/csi/sockets/pluginproxy/csi.sock
Expand All @@ -85,6 +88,8 @@ spec:
args:
- --csi-address=$(ADDRESS)
- --v=5
- --leader-election=true
- --leader-election-type=leases
env:
- name: ADDRESS
value: /var/lib/csi/sockets/pluginproxy/csi.sock
Expand All @@ -97,6 +102,7 @@ spec:
args:
- --csi-address=$(ADDRESS)
- --connection-timeout=15s
- --leader-election=true
env:
- name: ADDRESS
value: /var/lib/csi/sockets/pluginproxy/csi.sock
Expand Down
6 changes: 3 additions & 3 deletions stable/awsebscsiprovisioner/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ registrar:
node:
image:
repository: "quay.io/k8scsi/csi-node-driver-registrar"
tag: "v1.1.0"
tag: "v1.2.0"

provisioner:
# True if enable volume scheduling for dynamic volume provisioning
enableVolumeScheduling: false
image:
repository: "quay.io/k8scsi/csi-provisioner"
tag: "v1.4.0"
tag: "v1.5.0"

attacher:
image:
repository: "quay.io/k8scsi/csi-attacher"
tag: "v1.2.1"
tag: "v2.0.0"

snapshotter:
# True if enable volume snapshot
Expand Down

0 comments on commit 313ae3e

Please sign in to comment.