Skip to content

Commit 221f802

Browse files
authored
Merge pull request #700 from keznikl/master
Allow specifying --volume-attach-limit in the helm chart
2 parents 9d868af + 5175fd5 commit 221f802

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

charts/aws-ebs-csi-driver/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: "0.8.1"
33
name: aws-ebs-csi-driver
44
description: A Helm chart for AWS EBS CSI Driver
5-
version: 0.8.3
5+
version: 0.8.4
66
kubeVersion: ">=1.17.0-0"
77
home: https://github.com/kubernetes-sigs/aws-ebs-csi-driver
88
sources:

charts/aws-ebs-csi-driver/templates/node.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ spec:
5151
args:
5252
- node
5353
- --endpoint=$(CSI_ENDPOINT)
54+
{{- if .Values.volumeAttachLimit }}
55+
- --volume-attach-limit={{ .Values.volumeAttachLimit }}
56+
{{- end }}
5457
- --logtostderr
5558
- --v=5
5659
env:

charts/aws-ebs-csi-driver/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ enableVolumeResizing: false
4444
# True if enable volume snapshot
4545
enableVolumeSnapshot: false
4646

47+
# The "maximum number of attachable volumes" per node
48+
volumeAttachLimit: ""
49+
4750
resources:
4851
{}
4952
# We usually recommend not to specify default resources and to leave this as a conscious

0 commit comments

Comments
 (0)