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
This commit is contained in:
John Howard 2020-08-04 13:25:05 -07:00 committed by GitHub
parent 5f626f9d0c
commit e835bdbe26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 6 deletions

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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 >}}