add the ability to configure extra args to the different cinder-csi-p… (#11169)

* add the ability to configure extra args to the different cinder-csi-plugin containers

* endfor block added to be syntactically correct jinja
This commit is contained in:
Alexander
2024-06-26 11:40:20 +02:00
committed by GitHub
parent 88b502f29d
commit 619938da95
2 changed files with 30 additions and 1 deletions

View File

@@ -1,5 +1,4 @@
---
cinder_csi_attacher_image_tag: "v4.4.2"
cinder_csi_provisioner_image_tag: "v3.6.2"
cinder_csi_snapshotter_image_tag: "v6.3.2"
@@ -35,3 +34,15 @@ cinder_csi_controller_replicas: 1
# cinder_csi_rescan_on_resize: true
cinder_tolerations: []
## Dictionaries of extra arguments to add to the cinder CSI plugin containers
## Format:
## cinder_csi_attacher_extra_args:
## arg1: "value1"
## arg2: "value2"
cinder_csi_attacher_extra_args: {}
cinder_csi_provisioner_extra_args: {}
cinder_csi_snapshotter_extra_args: {}
cinder_csi_resizer_extra_args: {}
cinder_csi_plugin_extra_args: {}
cinder_liveness_probe_extra_args: {}