From e835bdbe26466e5a2f3a7fde9b39e2ad135e683f Mon Sep 17 00:00:00 2001 From: John Howard Date: Tue, 4 Aug 2020 13:25:05 -0700 Subject: [PATCH] Do not explicitly set addon namespace (#7847) * Do not explicitly set addon namespace its hardcoded in the manifest, and there are multiple namespaces used so hardcoded it to istio-system will fail * fix -f flag --- content/en/docs/ops/integrations/grafana/index.md | 2 +- content/en/docs/ops/integrations/jaeger/index.md | 2 +- content/en/docs/ops/integrations/kiali/index.md | 2 +- content/en/docs/ops/integrations/prometheus/index.md | 2 +- content/en/docs/ops/integrations/zipkin/index.md | 2 +- content/en/docs/setup/getting-started/index.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/content/en/docs/ops/integrations/grafana/index.md b/content/en/docs/ops/integrations/grafana/index.md index 50e3a6b91c..4583a21d7c 100644 --- a/content/en/docs/ops/integrations/grafana/index.md +++ b/content/en/docs/ops/integrations/grafana/index.md @@ -26,7 +26,7 @@ There are a few ways to configure Grafana to use these dashboards: Istio provides a basic sample installation to quickly get Grafana up and running, bundled with all of the Istio dashboards already installed: {{< text bash >}} -$ kubectl apply {{< github_file >}}/samples/addons/grafana.yaml -n istio-system +$ kubectl apply -f {{< github_file >}}/samples/addons/grafana.yaml {{< /text >}} This will deploy Grafana into your cluster. This is intended for demonstration only, and is not tuned for performance or security. diff --git a/content/en/docs/ops/integrations/jaeger/index.md b/content/en/docs/ops/integrations/jaeger/index.md index 11fc232340..d4e02a30a3 100644 --- a/content/en/docs/ops/integrations/jaeger/index.md +++ b/content/en/docs/ops/integrations/jaeger/index.md @@ -16,7 +16,7 @@ test: n/a Istio provides a basic sample installation to quickly get Jaeger up and running: {{< text bash >}} -$ kubectl apply {{< github_file >}}/samples/addons/jaeger.yaml -n istio-system +$ kubectl apply -f {{< github_file >}}/samples/addons/jaeger.yaml {{< /text >}} This will deploy Jaeger into your cluster. This is intended for demonstration only, and is not tuned for performance or security. diff --git a/content/en/docs/ops/integrations/kiali/index.md b/content/en/docs/ops/integrations/kiali/index.md index f4cdaec558..fa06a66224 100644 --- a/content/en/docs/ops/integrations/kiali/index.md +++ b/content/en/docs/ops/integrations/kiali/index.md @@ -19,7 +19,7 @@ Distributed tracing is provided by integration with [Jaeger](/docs/ops/integrati Istio provides a basic sample installation to quickly get Kiali up and running: {{< text bash >}} -$ kubectl apply {{< github_file >}}/samples/addons/kiali.yaml -n istio-system +$ kubectl apply -f {{< github_file >}}/samples/addons/kiali.yaml {{< /text >}} This will deploy Kiali into your cluster. This is intended for demonstration only, and is not tuned for performance or security. diff --git a/content/en/docs/ops/integrations/prometheus/index.md b/content/en/docs/ops/integrations/prometheus/index.md index 552dcb5dae..7f0de2e89e 100644 --- a/content/en/docs/ops/integrations/prometheus/index.md +++ b/content/en/docs/ops/integrations/prometheus/index.md @@ -16,7 +16,7 @@ test: n/a Istio provides a basic sample installation to quickly get Prometheus up and running: {{< text bash >}} -$ kubectl apply {{< github_file >}}/samples/addons/prometheus.yaml -n istio-system +$ kubectl apply -f {{< github_file >}}/samples/addons/prometheus.yaml {{< /text >}} This will deploy Prometheus into your cluster. This is intended for demonstration only, and is not tuned for performance or security. diff --git a/content/en/docs/ops/integrations/zipkin/index.md b/content/en/docs/ops/integrations/zipkin/index.md index afd5453b49..d66022fa5a 100644 --- a/content/en/docs/ops/integrations/zipkin/index.md +++ b/content/en/docs/ops/integrations/zipkin/index.md @@ -16,7 +16,7 @@ test: n/a Istio provides a basic sample installation to quickly get Zipkin up and running: {{< text bash >}} -$ kubectl apply {{< github_file >}}/samples/addons/extras/zipkin.yaml -n istio-system +$ kubectl apply -f {{< github_file >}}/samples/addons/extras/zipkin.yaml {{< /text >}} This will deploy Zipkin into your cluster. This is intended for demonstration only, and is not tuned for performance or security. diff --git a/content/en/docs/setup/getting-started/index.md b/content/en/docs/setup/getting-started/index.md index 5c81465eb1..446b314627 100644 --- a/content/en/docs/setup/getting-started/index.md +++ b/content/en/docs/setup/getting-started/index.md @@ -346,7 +346,7 @@ Use the following instructions to deploy the [Kiali](/docs/ops/integrations/kial 1. Install Kiali and wait for it to be deployed. {{< text bash >}} - $ kubectl apply -f @samples/addons@ -n istio-system + $ kubectl apply -f @samples/addons@ $ while ! kubectl wait --for=condition=available --timeout=600s deployment/kiali -n istio-system; do sleep 1; done {{< /text >}}