This repository has been archived by the owner on Jan 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from axoflow/releaser
Release packages
- Loading branch information
Showing
3 changed files
with
42 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters