From 19e7245135868739e732ec754054797993f27597 Mon Sep 17 00:00:00 2001 From: pierwill <19642016+pierwill@users.noreply.github.com> Date: Wed, 18 Dec 2019 11:42:20 -0600 Subject: [PATCH] Edit Kubernetes getting started instructions --- content/v2.0/get-started.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/content/v2.0/get-started.md b/content/v2.0/get-started.md index 6c5a988a1..3a3d8d9ce 100644 --- a/content/v2.0/get-started.md +++ b/content/v2.0/get-started.md @@ -226,16 +226,18 @@ The instructions below use Minikube, but the steps should be similar in any Kube kubectl get pods -n influxdb ``` -5. Ensure the service is available. You should see an IP address after `Endpoints`: +5. Ensure the service is available: ``` kubectl describe service -n influxdb influxdb ``` + You should see an IP address after `Endpoints` in the command's output. + 6. Forward port 9999 from inside the cluster to localhost: ``` - kubectl port-forward -n influxdb svc/influxdb 9999:9999 + kubectl port-forward -n influxdb service/influxdb 9999:9999 ``` {{% /tab-content %}}