Commit 25bb4d75 authored by Nicolas Steinmetz's avatar Nicolas Steinmetz Committed by Naseem

Fix reference to stable/* for influxdata/*

parent 86667873
...@@ -7,7 +7,8 @@ ...@@ -7,7 +7,8 @@
## QuickStart ## QuickStart
```bash ```bash
$ helm install stable/chronograf --name foo --namespace bar $ helm repo add influxdata https://influxdata.github.io/helm-charts
$ helm install influxdata/chronograf --name foo --namespace bar
``` ```
## Introduction ## Introduction
...@@ -24,7 +25,7 @@ This chart bootstraps a Chronograf deployment and service on a Kubernetes cluste ...@@ -24,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 stable/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.
...@@ -88,7 +89,7 @@ Specify each parameter using the `--set key=value[,key=value]` argument to `helm ...@@ -88,7 +89,7 @@ Specify each parameter using the `--set key=value[,key=value]` argument to `helm
```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 \
stable/chronograf influxdata/chronograf
``` ```
The above command enables persistence and changes the size of the requested data volume to 200GB. The above command enables persistence and changes the size of the requested data volume to 200GB.
...@@ -96,7 +97,7 @@ The above command enables persistence and changes the size of the requested data ...@@ -96,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 stable/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,7 +7,8 @@ ...@@ -7,7 +7,8 @@
## QuickStart ## QuickStart
```bash ```bash
$ helm install stable/influxdb --name foo --namespace bar $ helm repo add influxdata https://influxdata.github.io/helm-charts
$ helm install influxdata/influxdb --name foo --namespace bar
``` ```
## Introduction ## Introduction
...@@ -24,7 +25,7 @@ This chart bootstraps an InfluxDB statefulset and service on a Kubernetes cluste ...@@ -24,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 stable/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.
...@@ -52,7 +53,7 @@ Specify each parameter using the `--set key=value[,key=value]` argument to `helm ...@@ -52,7 +53,7 @@ Specify each parameter using the `--set key=value[,key=value]` argument to `helm
```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 \
stable/influxdb influxdata/influxdb
``` ```
The above command enables persistence and changes the size of the requested data volume to 200GB. The above command enables persistence and changes the size of the requested data volume to 200GB.
...@@ -60,7 +61,7 @@ The above command enables persistence and changes the size of the requested data ...@@ -60,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 stable/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,7 +7,8 @@ ...@@ -7,7 +7,8 @@
## QuickStart ## QuickStart
```bash ```bash
$ helm install stable/kapacitor --name foo --namespace bar $ helm repo add influxdata https://influxdata.github.io/helm-charts
$ helm install influxdata/kapacitor --name foo --namespace bar
``` ```
## Introduction ## Introduction
...@@ -24,7 +25,7 @@ This chart bootstraps A Kapacitor deployment and service on a Kubernetes cluster ...@@ -24,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 stable/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.
...@@ -73,7 +74,7 @@ Specify each parameter using the `--set key=value[,key=value]` argument to `helm ...@@ -73,7 +74,7 @@ Specify each parameter using the `--set key=value[,key=value]` argument to `helm
```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 \
stable/kapacitor influxdata/kapacitor
``` ```
The above command enables persistence and changes the size of the requested data volume to 200GB. The above command enables persistence and changes the size of the requested data volume to 200GB.
...@@ -81,7 +82,7 @@ The above command enables persistence and changes the size of the requested data ...@@ -81,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 stable/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)
......
...@@ -54,7 +54,7 @@ resources: ...@@ -54,7 +54,7 @@ resources:
# #
# or, at your terminal, with # or, at your terminal, with
# #
# helm install --name kapacitor-rls --set influxURL=http://influxurl.com,envVars.KAPACITOR_SLACK_ENABLED=true,envVars.KAPACITOR_SLACK_URL="http://slack.com/xxxxx/xxxxx/xxxx/xxxxxxx" stable/kapacitor # helm install --name kapacitor-rls --set influxURL=http://influxurl.com,envVars.KAPACITOR_SLACK_ENABLED=true,envVars.KAPACITOR_SLACK_URL="http://slack.com/xxxxx/xxxxx/xxxx/xxxxxxx" influxdata/kapacitor
## Set the URL of InfluxDB instance to create subscription on ## Set the URL of InfluxDB instance to create subscription on
## ref: https://docs.influxdata.com/kapacitor/v1.1/introduction/getting_started/ ## ref: https://docs.influxdata.com/kapacitor/v1.1/introduction/getting_started/
......
...@@ -5,7 +5,8 @@ ...@@ -5,7 +5,8 @@
## TL;DR ## TL;DR
```console ```console
$ helm install stable/telegraf $ helm repo add influxdata https://influxdata.github.io/helm-charts
$ helm install influxdata/telegraf
``` ```
## Introduction ## Introduction
...@@ -21,7 +22,7 @@ This chart bootstraps a `telegraf` deployment on a [Kubernetes](http://kubernete ...@@ -21,7 +22,7 @@ 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 stable/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.
...@@ -43,7 +44,7 @@ The command removes all the Kubernetes components associated with the chart and ...@@ -43,7 +44,7 @@ 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 stable/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