Update k8s "Get started" docs (#2167)

Update k8s "Get started" docs

- Add instructions for using kind
- Bump version to 2.0.3

Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>
pull/2043/head^2
pierwill 2021-02-10 14:15:12 -08:00 committed by GitHub
parent 3bb7133a39
commit 128bc37135
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 4 deletions

View File

@ -339,15 +339,20 @@ docker exec -it influxdb /bin/bash
### Install InfluxDB in a Kubernetes cluster
The instructions below use Minikube, but the steps should be similar in any Kubernetes cluster.
The instructions below use **minikube** or **kind**, but the steps should be similar in any Kubernetes cluster.
InfluxData also makes [Helm charts](https://github.com/influxdata/helm-charts) available.
1. [Install Minikube](https://kubernetes.io/docs/tasks/tools/install-minikube/).
1. Install [minikube](https://kubernetes.io/docs/tasks/tools/install-minikube/) or
[kind](https://kind.sigs.k8s.io/docs/user/quick-start/#installation).
2. Start Minikube:
2. Start a local cluster:
```sh
# with minikube
minikube start
# with kind
kind create cluster
```
3. Apply the [sample InfluxDB configuration](https://github.com/influxdata/docs-v2/blob/master/static/downloads/influxdb-k8-minikube.yaml) by running:

View File

@ -23,7 +23,7 @@ spec:
app: influxdb
spec:
containers:
- image: quay.io/influxdb/influxdb:v2.0.1
- image: quay.io/influxdb/influxdb:v2.0.3
name: influxdb
ports:
- containerPort: 8086