46 lines
1.4 KiB
Plaintext
46 lines
1.4 KiB
Plaintext
{{ template "chart.header" . }}
|
|
{{ template "chart.description" . }}
|
|
|
|
Current chart version is `{{ template "chart.version" . }}`
|
|
|
|
{{ template "chart.homepageLine" . }}
|
|
|
|
{{ template "chart.requirementsSection" . }}
|
|
|
|
## Required Values
|
|
|
|
In order to successfully install this chart, you **must** provide the following variables:
|
|
|
|
* `stackstate.apiKey`
|
|
* `stackstate.cluster.name`
|
|
* `stackstate.url`
|
|
|
|
The parameter `stackstate.cluster.name` is entered when installing the Cluster Agent StackPack.
|
|
|
|
Install them on the command line on Helm with the following command:
|
|
|
|
```shell
|
|
helm install \
|
|
--set-string 'stackstate.apiKey'='<your-api-key>' \
|
|
--set-string 'stackstate.cluster.name'='<your-cluster-name>' \
|
|
--set-string 'stackstate.url'='<your-stackstate-url>' \
|
|
stackstate/stackstate-k8s-agent
|
|
```
|
|
|
|
## Recommended Values
|
|
|
|
It is also recommended that you set a value for `stackstate.cluster.authToken`. If it is not provided, a value will be generated for you, but the value will change each time an upgrade is performed.
|
|
|
|
The command for **also** installing with a set token would be:
|
|
|
|
```shell
|
|
helm install \
|
|
--set-string 'stackstate.apiKey'='<your-api-key>' \
|
|
--set-string 'stackstate.cluster.name'='<your-cluster-name>' \
|
|
--set-string 'stackstate.cluster.authToken'='<your-cluster-token>' \
|
|
--set-string 'stackstate.url'='<your-stackstate-url>' \
|
|
stackstate/stackstate-k8s-agent
|
|
```
|
|
|
|
{{ template "chart.valuesSection" . }}
|