File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11---
22apiVersion : v1
3- appVersion : 0.43 .0
3+ appVersion : 0.44 .0
44description : " Container Storage Interface (CSI) driver for S3 volumes"
55name : csi-s3
6- version : 0.43 .0
6+ version : 0.44 .0
77keywords :
88 - s3
99home : https://github.com/yandex-cloud/k8s-csi-s3
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ The following table lists all configuration parameters and their default values.
2323
2424| Parameter | Description | Default |
2525| ---------------------------- | ---------------------------------------------------------------------- | ------------------------------------------------------ |
26+ | ` provisioner.extraArgs ` | Extra arguments for the provisioner | [ ] |
2627| ` storageClass.create ` | Specifies whether the storage class should be created | true |
2728| ` storageClass.name ` | Storage class name | csi-s3 |
2829| ` storageClass.singleBucket ` | Use a single bucket for all dynamically provisioned persistent volumes | |
Original file line number Diff line number Diff line change 11helm_chart :
22 name : cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-s3
3- tag : 0.43 .0
3+ tag : 0.44 .0
44requirements :
55 k8s_version : " >=1.13"
66images :
77 - full : images.registrar
88 - full : images.provisioner
99 - full : images.csi
1010user_values :
11+ - name : provisioner.extraArgs
12+ title :
13+ en : Extra arguments for the provisioner
14+ ru : Дополнительные аргументы для провиженера
15+ description :
16+ en : Extra arguments to pass to the provisioner container
17+ ru : Дополнительные аргументы, которые будут переданы в контейнер провиженера.
18+ string_value :
19+ default_value : " "
1120 - name : storageClass.create
1221 title :
1322 en : Create storage class
Original file line number Diff line number Diff line change 8787 args :
8888 - " --csi-address=$(ADDRESS)"
8989 - " --v=4"
90+ {{- range .Values.provisioner.extraArgs }}
91+ - {{ . | quote }}
92+ {{- end }}
9093 env :
9194 - name : ADDRESS
9295 value : {{ .Values.kubeletPath }}/plugins/ru.yandex.s3.csi/csi.sock
Original file line number Diff line number Diff line change 77 # Main image
88 csi : cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-s3-driver:0.43.0
99
10+ provisioner :
11+ # Extra arguments for the provisioner
12+ # Example - change the bucket name prefix from "pvc" to "pvc-s3":
13+ # extraArgs:
14+ # - "--volume-name-prefix=pvc-s3"
15+ extraArgs : []
16+
1017storageClass :
1118 # Specifies whether the storage class should be created
1219 create : true
You can’t perform that action at this time.
0 commit comments