-
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.
- Loading branch information
1 parent
f200374
commit f0cffc7
Showing
1 changed file
with
43 additions
and
1 deletion.
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 |
---|---|---|
@@ -1 +1,43 @@ | ||
# helm-charts | ||
# Caktus Helm Charts | ||
|
||
This repository contains Helm charts by [Caktus Group](https://www.caktusgroup.com/). | ||
|
||
## Adding the Caktus Helm repository | ||
|
||
To add the Caktus Helm repository, run the following command: | ||
|
||
```bash | ||
helm repo add caktus https://caktus.github.io/helm-charts | ||
``` | ||
|
||
## Searching for a chart | ||
|
||
To see the charts available to install and their versions, run: | ||
|
||
```bash | ||
helm search repo caktus | ||
``` | ||
|
||
## Installing a chart | ||
|
||
To install a chart, run: | ||
|
||
```bash | ||
helm install <release-name> caktus/<chart-name> | ||
``` | ||
|
||
## Updating the Caktus Helm repository | ||
|
||
To update the Caktus Helm repository, run: | ||
|
||
```bash | ||
helm repo update | ||
``` | ||
|
||
## Chart documentation | ||
|
||
For more information about a chart, run the following command: | ||
|
||
```bash | ||
helm show readme caktus/<chart-name> | ||
``` |