Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dirodriguezm authored Mar 21, 2023
1 parent cfe1787 commit 035dd23
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,21 @@ First create a release `helm package path/to/chart`
Run `helm upgrade --install release-name path/to/chart.gz`
You are encouraged to create a values.override.yaml file that you can fill with custom values, overriding the defaults of the chart's values.yaml.
To install the chart with custom values run `helm upgrade --install -f path/to/values.override.yaml release-name path/to/chart.gz`

## Best practices
- Do not use local packages. Instead, add the remote [repo](https://alercebroker.github.io/kubernetes_pipeline/) with all the charts available and install from there.

Once Helm has been set up correctly, add the repo as follows:

helm repo add <alias> https://alercebroker.github.io/kubernetes_pipeline

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 <alias>` to see the charts.

To install the <chart-name> chart:

helm install <release-name> <alias>/<chart-name>

To uninstall the chart:

helm delete <release-name>

0 comments on commit 035dd23

Please sign in to comment.