Skip to content

Commit 1db5577

Browse files
committed
Update helm chart for operator to v0.0.10
1 parent 9fbc0bb commit 1db5577

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

.github/workflows/release.yml

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

helm-charts/tarantool-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: kubernetes tarantool operator
55
type: application
66

77
# Helm chart Version
8-
version: 0.0.9
8+
version: 0.0.10
99

1010
# Application version to be deployed
1111
appVersion: 1.16.0

helm-charts/tarantool-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
image:
66
repository: tarantool/tarantool-operator
7-
tag: 0.0.9
7+
tag: 0.0.10
88
pullPolicy: IfNotPresent

0 commit comments

Comments
 (0)