Skip to content

Commit d5053c7

Browse files
authored
rename chart folder to default charts; add install/uninstall command in README (#2)
1 parent 81c1c82 commit d5053c7

13 files changed

+23
-4
lines changed

.github/workflows/chart-release.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Release Helm Chart
22

33
on:
44
push:
5-
paths:
6-
- 'chart/**'
75
branches:
86
- main
97

@@ -28,7 +26,5 @@ jobs:
2826

2927
- name: Run chart-releaser
3028
uses: helm/[email protected]
31-
with:
32-
charts_dir: chart
3329
env:
3430
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
Helm Charts for LocalStack. Details following soon.
44

5+
## Add the localstack repository to Helm:
6+
7+
```
8+
helm repo add localstack-charts https://localstack.github.io/helm-charts
9+
```
10+
511
## License
612

713
This code is released under the Apache License, Version 2.0 (see LICENSE.txt).
File renamed without changes.
File renamed without changes.

charts/localstack/README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# LocalStack Helm Chart
2+
3+
## Installing the Chart
4+
5+
To install the chart with the release name `my-release`:
6+
7+
```
8+
helm upgrade --install my-release localstack-charts/localstack
9+
```
10+
11+
## Uninstalling the Chart
12+
13+
To uninstall/delete the `my-release` deployment:
14+
15+
```
16+
$ helm delete my-release
17+
```
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)