Skip to content

Commit 5183b54

Browse files
Merge pull request #10 from shapeblue/update-branch-ref
Update branch references to main
2 parents 55c6533 + d01b0ef commit 5183b54

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/charts-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release Charts
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
paths:
88
- 'charts/**'
99

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
tags:
88
- v*
99

@@ -38,12 +38,12 @@ jobs:
3838
username: ${{github.actor}}
3939
password: ${{secrets.GITHUB_TOKEN}}
4040

41-
- name: Push master
42-
if: github.ref == 'refs/heads/master'
41+
- name: Push main
42+
if: github.ref == 'refs/heads/main'
4343
run: |
4444
for img in $IMAGES; do
45-
docker tag ${img} ${REGISTRY_NAME}/${img}:master
46-
docker push ${REGISTRY_NAME}/${img}:master
45+
docker tag ${img} ${REGISTRY_NAME}/${img}:main
46+
docker push ${REGISTRY_NAME}/${img}:main
4747
done
4848
4949
- name: Push tagged release

charts/cloudstack-csi/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: cloudstack-csi
33
description: A Helm chart for CloudStack CSI driver
44
type: application
5-
version: 2.0.2
5+
version: 3.0.0
66
appVersion: 0.6.1
77
sources:
88
- https://github.com/shapeblue/cloudstack-csi-driver

deploy/k8s/controller-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ spec:
5959

6060
containers:
6161
- name: cloudstack-csi-controller
62-
image: cloudstack-csi-driver
62+
image: ghcr.io/shapeblue/cloudstack-csi-driver:main
6363
imagePullPolicy: Always
6464
args:
6565
- "controller"

deploy/k8s/node-daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spec:
3636

3737
containers:
3838
- name: cloudstack-csi-node
39-
image: cloudstack-csi-driver
39+
image: ghcr.io/shapeblue/cloudstack-csi-driver:main
4040
imagePullPolicy: IfNotPresent
4141
args:
4242
- "node"

0 commit comments

Comments
 (0)