mirror of https://github.com/istio/istio.io.git
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:
parent
5f626f9d0c
commit
e835bdbe26
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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 >}}
|
||||
|
||||
|
|
Loading…
Reference in New Issue