Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
charts: release packages
Browse files Browse the repository at this point in the history
Signed-off-by: László Várady <[email protected]>
  • Loading branch information
MrAnno committed May 3, 2023
1 parent bd9899d commit ae244f7
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 14 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release Charts

on:
push:
branches:
- master

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
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 }}"
27 changes: 13 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,24 @@ This repository contains various [Helm charts](https://helm.sh/docs/topics/chart

## How to use

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

Currently the charts are only available through this git repositoy.
You can install charts using the following commands:
Once Helm has been set up correctly, add the repo as follows:

```bash
git clone [email protected]:axoflow/axosyslog-charts.git
cd axosyslog-charts
helm install --generate-name charts/axosyslog-collector
```
helm repo add axosyslog https://axoflow.github.io/axosyslog-charts

> **Tip**: List all installed releases using `helm list`.
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
axosyslog` to see the charts.

To uninstall a chart release, run:
To install the axosyslog-collector chart:

```bash
helm delete my-release
```
helm install my-axosyslog-collector axosyslog/axosyslog-collector

To uninstall the chart:

helm delete my-axosyslog-collector

## Contact and support

Expand Down

0 comments on commit ae244f7

Please sign in to comment.