Skip to content

Commit

Permalink
update instruction to update helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
slashmili authored Dec 8, 2023
1 parent ea83c31 commit 0e2c189
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,16 @@ helm lint hm-basic-webapp
```
4. Build zip file:
```
helm package hm-basic-webapp/
mkdir -p artifact-tmp
helm package hm-basic-webapp --destination artifact-tmp
```
5. update the `index.yaml` file:
```
helm repo index --url https://highmobility.github.io/helm-charts/ --merge index.yaml .
helm repo index --url https://highmobility.github.io/helm-charts/ --merge index.yaml artifact-tmp
```
6. Commit the zip file(s) and index.yaml and push to main
6. Move the new files to the root dir
```
mv artifact-tmp/* ./
rm -rf artifact-tmp
```
7. Commit the zip file(s) and index.yaml and push to main

0 comments on commit 0e2c189

Please sign in to comment.