Skip to content

Commit 9b72220

Browse files
committed
store helm deployment state in configmap
1 parent 43166be commit 9b72220

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

helm-deploy/action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ runs:
7575
run: |
7676
helm upgrade --wait --install ${{ inputs.release-name }} ./${{ inputs.helm-package }} \
7777
--namespace ${{ inputs.namespace }} \
78+
--history-max 10 \
79+
--storage-type configmaps \
7880
--values ${{ inputs.values-file }} \
7981
--atomic --timeout ${{ inputs.timeout }} \
8082
--set image.tag=${{ inputs.image-tag }}

readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,16 +97,16 @@ In order to have a versioning in place and working, create lightweight tags that
9797
Creating a new minor release:
9898

9999
```bash
100-
git tag v3
100+
git tag v4
101101
git push --tags
102102
```
103103

104104
Replacing an already existing minor release:
105105

106106
```bash
107-
git tag -d v3
108-
git push origin :refs/tags/v3
109-
git tag v3
107+
git tag -d v4
108+
git push origin :refs/tags/v4
109+
git tag v4
110110
git push --tags
111111
```
112112

0 commit comments

Comments
 (0)