Configure
How to configure and/or customize Kubees ?
Since we use Helm charts, you can override our values. To show default values you can run
helm show values kubees/kubees
Customize
We recommand you to create a values.yml
file with custom values.
Then, you can run this command to deploy Kubees with your values.
helm install kubees kubees/kubees -f values.yml
Which version should I use ?
By default, when you add/update our helm repo, it will download the latest version.
For a production usage, we recommand you to use specific version like 1.0.0
.
Install a specific version of an helm chart
Add the --version
flag to the install command.
# For example
helm install kubees kubees/kubees -f values.yml --version "1.0.0"
In order to list available versions, you can use
helm search repo kubees/kubees --versions