Skip to content

Commit

Permalink
Changes in CSI (#89)
Browse files Browse the repository at this point in the history
Signed-off-by: v.oleynikov <[email protected]>
  • Loading branch information
duckhawk authored Jan 21, 2025
1 parent 7b827eb commit 19d52f8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/helm_lib/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
type: library
name: deckhouse_lib_helm
version: 1.41.0
version: 1.42.0
description: "Helm utils template definitions for Deckhouse modules."
8 changes: 8 additions & 0 deletions charts/helm_lib/templates/_csi_controller.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ memory: 50Mi
{{- $resizerTimeout := $config.resizerTimeout | default "600s" }}
{{- $snapshotterTimeout := $config.snapshotterTimeout | default "600s" }}
{{- $provisionerWorkers := $config.provisionerWorkers | default "10" }}
{{- $volumeNamePrefix := $config.volumeNamePrefix }}
{{- $volumeNameUUIDLength := $config.volumeNameUUIDLength }}
{{- $attacherWorkers := $config.attacherWorkers | default "10" }}
{{- $resizerWorkers := $config.resizerWorkers | default "10" }}
{{- $snapshotterWorkers := $config.snapshotterWorkers | default "10" }}
Expand Down Expand Up @@ -218,6 +220,12 @@ spec:
- "--timeout={{ $provisionerTimeout }}"
- "--v=5"
- "--csi-address=$(ADDRESS)"
{{- if $volumeNamePrefix }}
- "--volume-name-prefix={{ $volumeNamePrefix }}"
{{- end }}
{{- if $volumeNameUUIDLength }}
- "--volume-name-uuid-length={{ $volumeNameUUIDLength }}"
{{- end }}
{{- if $topologyEnabled }}
- "--feature-gates=Topology=true"
- "--strict-topology"
Expand Down

0 comments on commit 19d52f8

Please sign in to comment.