-
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.
Signed-off-by: babykart <[email protected]>
- Loading branch information
Showing
3 changed files
with
105 additions
and
19 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 |
---|---|---|
|
@@ -2,31 +2,31 @@ apiVersion: v2 | |
name: agola | ||
description: A Helm chart for Agola | ||
type: application | ||
version: 0.6.1 | ||
version: 0.6.2 | ||
appVersion: "v0.9.2" | ||
kubeVersion: ">=1.19.0-0" | ||
home: https://agola.io/ | ||
icon: https://avatars.githubusercontent.com/u/50148927?s=200&v=4 | ||
|
||
keywords: | ||
- ci-cd | ||
- continuous-delivery | ||
- continuous-deployment | ||
- continuous-integration | ||
- distributed | ||
- docker | ||
- git | ||
- gitea | ||
- gitlab | ||
- github | ||
- golang | ||
- kubernetes | ||
- ci-cd | ||
- continuous-delivery | ||
- continuous-deployment | ||
- continuous-integration | ||
- distributed | ||
- docker | ||
- git | ||
- gitea | ||
- gitlab | ||
- github | ||
- golang | ||
- kubernetes | ||
|
||
sources: | ||
- https://github.com/agola-io/agola.git | ||
- https://github.com/agola-io/agola-web.git | ||
- https://github.com/agola-io/agola.git | ||
- https://github.com/agola-io/agola-web.git | ||
|
||
maintainers: | ||
- name: babykart | ||
email: [email protected] | ||
url: https://github.com/babykart | ||
- name: babykart | ||
email: [email protected] | ||
url: https://github.com/babykart |
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
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,51 @@ | ||
{{ template "chart.header" . }} | ||
{{ template "chart.deprecationWarning" . }} | ||
|
||
{{ template "chart.badgesSection" . }} | ||
|
||
{{ template "chart.description" . }} | ||
|
||
{{ template "chart.homepageLine" . }} | ||
|
||
{{ template "chart.maintainersSection" . }} | ||
|
||
{{ template "chart.sourcesSection" . }} | ||
|
||
## Usage | ||
|
||
[Helm](https://helm.sh) must be installed to use the charts. Please refer to | ||
Helm's [documentation](https://helm.sh/docs) to get started. | ||
|
||
Once Helm has been set up correctly, add the repo as follows: | ||
|
||
```sh | ||
helm repo add agola-helm https://babykart.github.io/agola-helm | ||
``` | ||
|
||
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 | ||
agola-helm` to see the charts. | ||
|
||
To install the agola chart: | ||
|
||
```sh | ||
helm upgrade --install agola agola-helm/agola | ||
``` | ||
|
||
Using an OCI-based registry: | ||
|
||
```sh | ||
helm upgrade --install agola oci://ghcr.io/babykart/helm-charts/agola | ||
``` | ||
|
||
To uninstall the chart: | ||
|
||
```sh | ||
helm delete agola | ||
``` | ||
|
||
{{ template "chart.requirementsSection" . }} | ||
|
||
{{ template "chart.valuesSection" . }} | ||
|
||
{{ template "helm-docs.versionFooter" . }} |