Commit 6725f22f authored by Nicolas Steinmetz's avatar Nicolas Steinmetz Committed by Naseem
parent 79d82f1d
...@@ -13,7 +13,7 @@ Please refer to Helm's [documentation](https://helm.sh/docs/) to get started. ...@@ -13,7 +13,7 @@ Please refer to Helm's [documentation](https://helm.sh/docs/) to get started.
Once Helm is set up properly, add the repo as follows: Once Helm is set up properly, add the repo as follows:
```console ```console
$ helm repo add influxdata https://helm.influxdata.com/ helm repo add influxdata https://helm.influxdata.com/
``` ```
You can then run `helm search repo influxdata` to see the charts. You can then run `helm search repo influxdata` to see the charts.
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
## QuickStart ## QuickStart
```bash ```bash
$ helm repo add influxdata https://helm.influxdata.com/ helm repo add influxdata https://helm.influxdata.com/
$ helm install influxdata/chronograf --name foo --namespace bar helm install influxdata/chronograf --name foo --namespace bar
``` ```
## Introduction ## Introduction
...@@ -25,7 +25,7 @@ This chart bootstraps a Chronograf deployment and service on a Kubernetes cluste ...@@ -25,7 +25,7 @@ This chart bootstraps a Chronograf deployment and service on a Kubernetes cluste
To install the chart with the release name `my-release`: To install the chart with the release name `my-release`:
```bash ```bash
$ helm install --name my-release influxdata/chronograf helm install --name my-release influxdata/chronograf
``` ```
The command deploys Chronograf on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation. The command deploys Chronograf on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
...@@ -37,7 +37,7 @@ The command deploys Chronograf on the Kubernetes cluster in the default configur ...@@ -37,7 +37,7 @@ The command deploys Chronograf on the Kubernetes cluster in the default configur
To uninstall/delete the `my-release` deployment: To uninstall/delete the `my-release` deployment:
```bash ```bash
$ helm delete my-release --purge helm delete my-release --purge
``` ```
The command removes all the Kubernetes components associated with the chart and deletes the release. The command removes all the Kubernetes components associated with the chart and deletes the release.
...@@ -87,7 +87,7 @@ The following table lists the configurable parameters of the chronograf chart an ...@@ -87,7 +87,7 @@ The following table lists the configurable parameters of the chronograf chart an
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
```bash ```bash
$ helm install --name my-release \ helm install --name my-release \
--set ingress.enabled=true,ingress.hostname=chronograf.foobar.com \ --set ingress.enabled=true,ingress.hostname=chronograf.foobar.com \
influxdata/chronograf influxdata/chronograf
``` ```
...@@ -97,7 +97,7 @@ The above command enables persistence and changes the size of the requested data ...@@ -97,7 +97,7 @@ The above command enables persistence and changes the size of the requested data
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example, Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
```bash ```bash
$ helm install --name my-release -f values.yaml influxdata/chronograf helm install --name my-release -f values.yaml influxdata/chronograf
``` ```
> **Tip**: You can use the default [values.yaml](values.yaml) > **Tip**: You can use the default [values.yaml](values.yaml)
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
## QuickStart ## QuickStart
```bash ```bash
$ helm repo add influxdata https://helm.influxdata.com/ helm repo add influxdata https://helm.influxdata.com/
$ helm install influxdata/influxdb --name foo --namespace bar helm install influxdata/influxdb --name foo --namespace bar
``` ```
## Introduction ## Introduction
...@@ -25,7 +25,7 @@ This chart bootstraps an InfluxDB statefulset and service on a Kubernetes cluste ...@@ -25,7 +25,7 @@ This chart bootstraps an InfluxDB statefulset and service on a Kubernetes cluste
To install the chart with the release name `my-release`: To install the chart with the release name `my-release`:
```bash ```bash
$ helm install --name my-release influxdata/influxdb helm install --name my-release influxdata/influxdb
``` ```
The command deploys InfluxDB on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation. The command deploys InfluxDB on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
...@@ -37,7 +37,7 @@ The command deploys InfluxDB on the Kubernetes cluster in the default configurat ...@@ -37,7 +37,7 @@ The command deploys InfluxDB on the Kubernetes cluster in the default configurat
To uninstall/delete the `my-release` deployment: To uninstall/delete the `my-release` deployment:
```bash ```bash
$ helm delete my-release --purge helm delete my-release --purge
``` ```
The command removes all the Kubernetes components associated with the chart and deletes the release. The command removes all the Kubernetes components associated with the chart and deletes the release.
...@@ -51,7 +51,7 @@ The [full image documentation](https://hub.docker.com/_/influxdb/) contains more ...@@ -51,7 +51,7 @@ The [full image documentation](https://hub.docker.com/_/influxdb/) contains more
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
```bash ```bash
$ helm install --name my-release \ helm install --name my-release \
--set persistence.enabled=true,persistence.size=200Gi \ --set persistence.enabled=true,persistence.size=200Gi \
influxdata/influxdb influxdata/influxdb
``` ```
...@@ -61,7 +61,7 @@ The above command enables persistence and changes the size of the requested data ...@@ -61,7 +61,7 @@ The above command enables persistence and changes the size of the requested data
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example, Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
```bash ```bash
$ helm install --name my-release -f values.yaml influxdata/influxdb helm install --name my-release -f values.yaml influxdata/influxdb
``` ```
> **Tip**: You can use the default [values.yaml](values.yaml) > **Tip**: You can use the default [values.yaml](values.yaml)
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
## QuickStart ## QuickStart
```bash ```bash
$ helm repo add influxdata https://helm.influxdata.com/ helm repo add influxdata https://helm.influxdata.com/
$ helm install influxdata/kapacitor --name foo --namespace bar helm install influxdata/kapacitor --name foo --namespace bar
``` ```
## Introduction ## Introduction
...@@ -25,7 +25,7 @@ This chart bootstraps A Kapacitor deployment and service on a Kubernetes cluster ...@@ -25,7 +25,7 @@ This chart bootstraps A Kapacitor deployment and service on a Kubernetes cluster
To install the chart with the release name `my-release`: To install the chart with the release name `my-release`:
```bash ```bash
$ helm install --name my-release influxdata/kapacitor helm install --name my-release influxdata/kapacitor
``` ```
The command deploys Kapacitor on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation. The command deploys Kapacitor on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
...@@ -37,7 +37,7 @@ The command deploys Kapacitor on the Kubernetes cluster in the default configura ...@@ -37,7 +37,7 @@ The command deploys Kapacitor on the Kubernetes cluster in the default configura
To uninstall/delete the `my-release` deployment: To uninstall/delete the `my-release` deployment:
```bash ```bash
$ helm delete my-release --purge helm delete my-release --purge
``` ```
The command removes all the Kubernetes components associated with the chart and deletes the release. The command removes all the Kubernetes components associated with the chart and deletes the release.
...@@ -72,7 +72,7 @@ The [full image documentation](https://hub.docker.com/_/kapacitor/) contains mor ...@@ -72,7 +72,7 @@ The [full image documentation](https://hub.docker.com/_/kapacitor/) contains mor
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
```bash ```bash
$ helm install --name my-release \ helm install --name my-release \
--set influxURL=http://myinflux.mytld:8086,persistence.enabled=true \ --set influxURL=http://myinflux.mytld:8086,persistence.enabled=true \
influxdata/kapacitor influxdata/kapacitor
``` ```
...@@ -82,7 +82,7 @@ The above command enables persistence and changes the size of the requested data ...@@ -82,7 +82,7 @@ The above command enables persistence and changes the size of the requested data
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example, Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
```bash ```bash
$ helm install --name my-release -f values.yaml influxdata/kapacitor helm install --name my-release -f values.yaml influxdata/kapacitor
``` ```
> **Tip**: You can use the default [values.yaml](values.yaml) > **Tip**: You can use the default [values.yaml](values.yaml)
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
## TL;DR ## TL;DR
```console ```console
$ helm repo add influxdata https://helm.influxdata.com/ helm repo add influxdata https://helm.influxdata.com/
$ helm install influxdata/telegraf helm install influxdata/telegraf
``` ```
## Introduction ## Introduction
...@@ -21,8 +21,8 @@ This chart bootstraps a `telegraf` deployment on a [Kubernetes](http://kubernete ...@@ -21,8 +21,8 @@ This chart bootstraps a `telegraf` deployment on a [Kubernetes](http://kubernete
To install the chart with the release name `telegraf`: To install the chart with the release name `telegraf`:
```console `console
$ helm install --name telegraf --namespace monitoring influxdata/telegraf helm install --name telegraf --namespace monitoring influxdata/telegraf
``` ```
The command deploys Telegraf on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation. The command deploys Telegraf on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
...@@ -33,8 +33,8 @@ The command deploys Telegraf on the Kubernetes cluster in the default configurat ...@@ -33,8 +33,8 @@ The command deploys Telegraf on the Kubernetes cluster in the default configurat
To uninstall/delete the `telegraf` deployment: To uninstall/delete the `telegraf` deployment:
```console `console
$ helm delete telegraf helm delete telegraf
``` ```
The command removes all the Kubernetes components associated with the chart and deletes the release. The command removes all the Kubernetes components associated with the chart and deletes the release.
...@@ -43,8 +43,8 @@ The command removes all the Kubernetes components associated with the chart and ...@@ -43,8 +43,8 @@ The command removes all the Kubernetes components associated with the chart and
The default configuration parameters are listed in `values.yaml`. The default configuration parameters are listed in `values.yaml`.
```console `console
$ helm install --name telegraf influxdata/telegraf helm install --name telegraf influxdata/telegraf
``` ```
Outputs and inputs are configured as arrays of key/value dictionaries. Additional examples and defaults can be found in [values.yaml](values.yaml) Outputs and inputs are configured as arrays of key/value dictionaries. Additional examples and defaults can be found in [values.yaml](values.yaml)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment