Commit 1f9d96b 1 parent 32bfcf3 commit 1f9d96b Copy full SHA for 1f9d96b
File tree 2 files changed +41
-14
lines changed
2 files changed +41
-14
lines changed Original file line number Diff line number Diff line change
1
+ name : Release Charts
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+
8
+ jobs :
9
+ release :
10
+ permissions :
11
+ contents : write
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Checkout
15
+ uses : actions/checkout@v4
16
+ with :
17
+ fetch-depth : 0
18
+
19
+ - name : Configure Git
20
+ run : |
21
+ git config user.name "$GITHUB_ACTOR"
22
+ git config user.email "[email protected] "
23
+
24
+ - name : Run chart-releaser
25
+
26
+ env :
27
+ CR_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
Original file line number Diff line number Diff line change 1
- <!--
2
- SPDX-FileCopyrightText: 2024 Zentrum für Digitale Souveränität der Öffentlichen Verwaltung (ZenDiS) GmbH
3
- SPDX-License-Identifier: Apache-2.0
4
- -->
5
- # NGINX S3 Caching Gateway Helm Chart
1
+ <!-- SPDX-FileCopyrightText: 2024 Zentrum für Digitale Souveränität der Öffentlichen Verwaltung (ZenDiS) GmbH SPDX-License-Identifier: Apache-2.0 -->
6
2
7
- A Helm chart for deploying NGINX S3 Caching Gateway.
3
+ ## Usage
8
4
9
- ## Prerequisites
5
+ [ Helm] ( https://helm.sh ) must be installed to use the charts. Please refer to
6
+ Helm's [ documentation] ( https://helm.sh/docs ) to get started.
10
7
11
- Before you begin, ensure you have met the following requirements :
8
+ Once Helm has been set up correctly, add the repo as follows :
12
9
13
- - Kubernetes 1.21+
14
- - Helm 3.0.0+
10
+ helm repo add denkhaus https://denkhaus.github.io/helm-charts
15
11
16
- ## License
12
+ If you had already added this repo earlier, run ` helm repo update ` to retrieve
13
+ the latest versions of the packages. You can then run `helm search repo
14
+ denkhaus` to see the charts.
17
15
18
- This project uses the following license: Apache-2.0
16
+ To install the nginx-s3-gateway chart:
19
17
20
- ## Copyright
18
+ helm install my-nginx-s3-gateway denkhaus/nginx-s3-gateway
21
19
22
- Copyright © 2024 Zentrum für Digitale Souveränität der Öffentlichen Verwaltung (ZenDiS) GmbH
20
+ To uninstall the chart:
21
+
22
+ helm delete my-nginx-s3-gateway
You can’t perform that action at this time.
0 commit comments