From f818e129398cbbb3b6cb9f5dfadc9f003f46a79e Mon Sep 17 00:00:00 2001 From: Niclas Schad Date: Fri, 24 Jul 2026 14:34:01 +0200 Subject: [PATCH 1/2] ci: add xfs to list of supported fsTypes Signed-off-by: Niclas Schad --- test/e2e/csi-plugin/block-storage.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/e2e/csi-plugin/block-storage.yaml b/test/e2e/csi-plugin/block-storage.yaml index 18e79095..355460db 100644 --- a/test/e2e/csi-plugin/block-storage.yaml +++ b/test/e2e/csi-plugin/block-storage.yaml @@ -4,6 +4,9 @@ SnapshotClass: FromExistingClassName: "stackit" DriverInfo: Name: block-storage.csi.stackit.cloud + SupportedFsType: + - "xfs" + - "ext4" Capabilities: # whether to support RAW block mode block: true From c96b1eba9619a7f55e00538c7a4ef129325e1e48 Mon Sep 17 00:00:00 2001 From: Niclas Schad Date: Fri, 24 Jul 2026 16:04:01 +0200 Subject: [PATCH 2/2] use correct syntax for type sets.String Signed-off-by: Niclas Schad --- test/e2e/csi-plugin/block-storage.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/csi-plugin/block-storage.yaml b/test/e2e/csi-plugin/block-storage.yaml index 355460db..ab55afe3 100644 --- a/test/e2e/csi-plugin/block-storage.yaml +++ b/test/e2e/csi-plugin/block-storage.yaml @@ -5,8 +5,8 @@ SnapshotClass: DriverInfo: Name: block-storage.csi.stackit.cloud SupportedFsType: - - "xfs" - - "ext4" + ext4: {} + xfs: {} Capabilities: # whether to support RAW block mode block: true