Skip to content

Commit 0f22785

Browse files
authored
remove VolumeAttachLimit from STACKIT CSI (#18)
Signed-off-by: Felix Breuer <f.breuer94@gmail.com>
1 parent fd3e2bc commit 0f22785

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

charts/internal/shoot-system-components/charts/stackit-blockstorage-csi-driver/values.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ prefix: stackit-blockstorage
22
driverName: block-storage.csi.stackit.cloud
33

44
rescanBlockStorageOnResize: "true"
5-
nodeVolumeAttachLimit: 24
65

76
images:
87
csi-driver-stackit: image-repository:image-tag

pkg/controller/controlplane/valuesprovider.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1213,7 +1213,6 @@ func (vp *valuesProvider) getControlPlaneShootChartCSISTACKITValues(ctx context.
12131213
values := map[string]any{
12141214
"enabled": getCSIDriver(cpConfig) == stackitv1alpha1.STACKIT,
12151215
"rescanBlockStorageOnResize": cloudProfileConfig.RescanBlockStorageOnResize != nil && *cloudProfileConfig.RescanBlockStorageOnResize,
1216-
"nodeVolumeAttachLimit": cloudProfileConfig.NodeVolumeAttachLimit,
12171216
}
12181217

12191218
if userAgentHeader != nil {

pkg/controller/controlplane/valuesprovider_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,6 @@ var _ = Describe("ValuesProvider", func() {
902902
openstack.CloudControllerManagerName: enabledTrue,
903903
openstack.CSISTACKITNodeName: utils.MergeMaps(enabledTrue, map[string]any{
904904
"rescanBlockStorageOnResize": rescanBlockStorageOnResize,
905-
"nodeVolumeAttachLimit": ptr.To[int32](nodeVoluemAttachLimit),
906905
"userAgentHeaders": []string{domainName, tenantName, technicalID},
907906
}),
908907
openstack.CSINodeName: enabledFalse,
@@ -921,7 +920,6 @@ var _ = Describe("ValuesProvider", func() {
921920
openstack.CloudControllerManagerName: enabledTrue,
922921
openstack.CSISTACKITControllerName: utils.MergeMaps(enabledTrue, map[string]any{
923922
"rescanBlockStorageOnResize": rescanBlockStorageOnResize,
924-
"nodeVolumeAttachLimit": ptr.To[int32](nodeVoluemAttachLimit),
925923
"userAgentHeaders": []string{domainName, tenantName, technicalID},
926924
}),
927925
openstack.CSINodeName: enabledFalse,

0 commit comments

Comments
 (0)