Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update awsebscsiprovisioner chart #492

Merged
merged 10 commits into from
Mar 19, 2020
Prev Previous commit
Next Next commit
feat(awsebscsiprovisioner): updated awsebscsiprovisioner flags
- 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 19, 2020
commit 8b2cf7d5b43e1cdf66f12b224ee5532559d9c60d
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
5 changes: 5 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,7 @@ spec:
args:
- --csi-address=$(ADDRESS)
- --v=5
- --leader-election=true
env:
- name: ADDRESS
value: /var/lib/csi/sockets/pluginproxy/csi.sock
Expand All @@ -97,6 +101,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
8 changes: 4 additions & 4 deletions stable/awsebscsiprovisioner/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ image:
liveness:
image:
repository: "quay.io/k8scsi/livenessprobe"
tag: "v1.2.0"
tag: "v2.0.0"

tolerations:
- effect: NoSchedule
Expand All @@ -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