Skip to content

Commit 67a401b

Browse files
committed
Updated helm chart
1 parent 35ff5af commit 67a401b

File tree

3 files changed

+35
-4
lines changed

3 files changed

+35
-4
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Release Charts
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
9+
jobs:
10+
release:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v2
15+
with:
16+
fetch-depth: 0
17+
18+
- name: Configure Git
19+
run: |
20+
git config user.name "$GITHUB_ACTOR"
21+
git config user.email "[email protected]"
22+
23+
- name: Install Helm
24+
uses: azure/setup-helm@v1
25+
with:
26+
version: v3.4.0
27+
28+
- name: Run chart-releaser
29+
uses: helm/[email protected]
30+
env:
31+
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

charts/qnap-csi/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ type: application
66
# This is the chart version. This version number should be incremented each time you make changes
77
# to the chart and its templates, including the app version.
88
# Versions are expected to follow Semantic Versioning (https://semver.org/)
9-
version: 0.1.3
9+
version: 0.2.0
1010

1111
# This is the version number of the application being deployed. This version number should be
1212
# incremented each time you make changes to the application. Versions are not expected to
1313
# follow Semantic Versioning. They should reflect the version the application is using.
1414
# It is recommended to use it with quotes.
15-
appVersion: "1.16.0"
15+
appVersion: "0.1.1"

charts/qnap-csi/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ node:
2929
resources: {}
3030

3131
image:
32-
repository: "registry.dolphincorp.co.uk/qnap-csi"
32+
repository: "ghcr.io/terrycain/qnap-csi"
3333
pullPolicy: IfNotPresent
34-
tag: "latest"
34+
tag: "" # Will use
3535

3636
imagePullSecrets: []
3737
nameOverride: ""

0 commit comments

Comments
 (0)