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

[helm] add tag options and update csi-provisioner #577

Merged
merged 3 commits into from
Oct 15, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[helm] add tag options and update csi-provisioner
--extra-create-metadata was added in csi-provisioner 1.6.0
kcking committed Oct 3, 2020
commit 3dfe13c102a31e3aa17ffb79037e362bd88f3cba
6 changes: 6 additions & 0 deletions aws-ebs-csi-driver/templates/controller.yaml
Original file line number Diff line number Diff line change
@@ -50,6 +50,9 @@ spec:
{{- if .Values.extraVolumeTags }}
{{- include "aws-ebs-csi-driver.extra-volume-tags" . | nindent 12 }}
{{- end }}
{{- if .Values.k8sTagClusterId }}
- --k8s-tag-cluster-id={{ .Values.k8sTagClusterId }}
{{- end }}
- --logtostderr
- --v=5
env:
@@ -97,6 +100,9 @@ spec:
{{- if .Values.enableVolumeScheduling }}
- --feature-gates=Topology=true
{{- end}}
{{- if .Values.extraCreateMetadata }}
- --extra-create-metadata
{{- end}}
- --enable-leader-election
- --leader-election-type=leases
env:
2 changes: 1 addition & 1 deletion aws-ebs-csi-driver/values.yaml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ image:
sidecars:
provisionerImage:
repository: quay.io/k8scsi/csi-provisioner
tag: "v1.5.0"
tag: "v1.6.0"
attacherImage:
repository: quay.io/k8scsi/csi-attacher
tag: "v1.2.0"