From ceb019d5e979a25cefa269e97f64687079284cf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20Fl=C3=B6tzinger?= Date: Wed, 5 Nov 2025 12:31:37 +0100 Subject: [PATCH 1/3] Fix manifest creation caused by missing linebreaks --- .github/workflows/release.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c1125b0..051302c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -128,15 +128,15 @@ jobs: - name: Create manifest run: | VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,' | sed -e 's/^v//') - echo "---" >> manifest.yaml + printf "---\n" >> manifest.yaml cat deploy/k8s/rbac.yaml >> manifest.yaml - echo "---" >> manifest.yaml + printf "---\n" >> manifest.yaml cat deploy/k8s/csidriver.yaml >> manifest.yaml - echo "---" >> manifest.yaml + printf "---\n" >> manifest.yaml sed -E "s|(image: +${REGISTRY_NAME}/cloudstack-csi-driver)(:[^ ]+)?|\\1:${VERSION}|" deploy/k8s/controller-deployment.yaml >> manifest.yaml - echo "---" >> manifest.yaml + printf "---\n" >> manifest.yaml sed -E "s|(image: +${REGISTRY_NAME}/cloudstack-csi-driver)(:[^ ]+)?|\\1:${VERSION}|" deploy/k8s/node-daemonset.yaml >> manifest.yaml - echo "---" >> manifest.yaml + printf "---\n" >> manifest.yaml cat deploy/k8s/volume-snapshot-class.yaml >> manifest.yaml - name: Create Release From fcba53cf9ee2b40120404eb6d2c116c2bad2887d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20Fl=C3=B6tzinger?= Date: Wed, 5 Nov 2025 13:14:51 +0100 Subject: [PATCH 2/3] Add empty option to description for metadataSource as possible entry --- charts/cloudstack-csi/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/cloudstack-csi/values.yaml b/charts/cloudstack-csi/values.yaml index 3cea335..1736b9b 100644 --- a/charts/cloudstack-csi/values.yaml +++ b/charts/cloudstack-csi/values.yaml @@ -280,7 +280,7 @@ node: annotations: {} automountServiceAccountToken: true # Metadata source to try to find instance ID. - # Possible values 'cloud-init' & 'ignition' + # Possible values 'cloud-init' & 'ignition' or '' metadataSource: ignition # The maximum number of volumes that can be attached to a node volumeAttachLimit: From c22f761deeae925b94158ac6afeeae8ab0678a82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20Fl=C3=B6tzinger?= Date: Wed, 5 Nov 2025 13:15:48 +0100 Subject: [PATCH 3/3] Bump app version to 3.0.0 of csi driver in helm chart --- charts/cloudstack-csi/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/cloudstack-csi/Chart.yaml b/charts/cloudstack-csi/Chart.yaml index 48ccd0d..2a633d4 100644 --- a/charts/cloudstack-csi/Chart.yaml +++ b/charts/cloudstack-csi/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: cloudstack-csi description: A Helm chart for CloudStack CSI driver type: application -version: 3.0.0 -appVersion: 0.6.1 +version: 3.0.1 +appVersion: 3.0.0 sources: - https://github.com/cloudstack/cloudstack-csi-driver keywords: