Skip to content

Commit

Permalink
add release action
Browse files Browse the repository at this point in the history
  • Loading branch information
denkhaus committed Dec 17, 2024
1 parent 32bfcf3 commit 1f9d96b
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 14 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release Charts

on:
push:
branches:
- main

jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
<!--
SPDX-FileCopyrightText: 2024 Zentrum für Digitale Souveränität der Öffentlichen Verwaltung (ZenDiS) GmbH
SPDX-License-Identifier: Apache-2.0
-->
# NGINX S3 Caching Gateway Helm Chart
<!-- SPDX-FileCopyrightText: 2024 Zentrum für Digitale Souveränität der Öffentlichen Verwaltung (ZenDiS) GmbH SPDX-License-Identifier: Apache-2.0 -->

A Helm chart for deploying NGINX S3 Caching Gateway.
## Usage

## Prerequisites
[Helm](https://helm.sh) must be installed to use the charts. Please refer to
Helm's [documentation](https://helm.sh/docs) to get started.

Before you begin, ensure you have met the following requirements:
Once Helm has been set up correctly, add the repo as follows:

- Kubernetes 1.21+
- Helm 3.0.0+
helm repo add denkhaus https://denkhaus.github.io/helm-charts

## License
If you had already added this repo earlier, run `helm repo update` to retrieve
the latest versions of the packages. You can then run `helm search repo
denkhaus` to see the charts.

This project uses the following license: Apache-2.0
To install the nginx-s3-gateway chart:

## Copyright
helm install my-nginx-s3-gateway denkhaus/nginx-s3-gateway

Copyright © 2024 Zentrum für Digitale Souveränität der Öffentlichen Verwaltung (ZenDiS) GmbH
To uninstall the chart:

helm delete my-nginx-s3-gateway

0 comments on commit 1f9d96b

Please sign in to comment.