Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/cloudstack-csi/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion charts/cloudstack-csi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down