From f40d262f60bfa38e5ac4f426f094681c62fc97b8 Mon Sep 17 00:00:00 2001 From: ChickenchickenLove Date: Tue, 19 Mar 2024 22:57:42 +0900 Subject: [PATCH 1/3] Improve Install via Helm. --- .../Installation/installation-guide/install-with-helm.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/en/docs/Installation/installation-guide/install-with-helm.md b/content/en/docs/Installation/installation-guide/install-with-helm.md index ade0b7938..4304bdb0b 100644 --- a/content/en/docs/Installation/installation-guide/install-with-helm.md +++ b/content/en/docs/Installation/installation-guide/install-with-helm.md @@ -69,6 +69,7 @@ command: $ helm install \ --set cr.create=true \ --set cr.namespace=istio-system \ + --set cr.auth.strategy="anonymous" \ --namespace kiali-operator \ --create-namespace \ kiali-operator \ @@ -80,7 +81,10 @@ create the `kiali-operator` namespace (if needed), and deploy the Kiali operator on it. The `--set cr.create=true` and `--set cr.namespace=istio-system` flags instructs to create a Kiali CR in the `istio-system` namespace. Since the Kiali CR is created in advance, as soon as -the Kiali operator starts, it will process it to deploy Kiali. +the Kiali operator starts, it will process it to deploy Kiali. After Kiali has started, +you can access Kiali UI through 'http://localhost:20001' by executing +`kubectl port-forward service/kiali -n istio-system 20001:20001` +because of `--set cr.auth.strategy="anonymous"`. The Kiali Operator Helm Chart is configurable. Check available options and default values by running: From 746bba53d0d648366b3e58e7f8ac17064f994da8 Mon Sep 17 00:00:00 2001 From: ChickenchickenLove Date: Tue, 19 Mar 2024 23:33:35 +0900 Subject: [PATCH 2/3] Improve Install via Helm. (Add description about auth.strategy) Co-authored-by: John Mazzitelli --- .../docs/Installation/installation-guide/install-with-helm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/Installation/installation-guide/install-with-helm.md b/content/en/docs/Installation/installation-guide/install-with-helm.md index 4304bdb0b..09a86b000 100644 --- a/content/en/docs/Installation/installation-guide/install-with-helm.md +++ b/content/en/docs/Installation/installation-guide/install-with-helm.md @@ -84,7 +84,7 @@ cr.namespace=istio-system` flags instructs to create a Kiali CR in the the Kiali operator starts, it will process it to deploy Kiali. After Kiali has started, you can access Kiali UI through 'http://localhost:20001' by executing `kubectl port-forward service/kiali -n istio-system 20001:20001` -because of `--set cr.auth.strategy="anonymous"`. +because of `--set cr.auth.strategy="anonymous"`. But realize that anonymous mode will allow anyone to be able to see and use Kiali. If you wish to require users to authenticate themselves by logging into Kiali, use one of the other [auth strategies](/configuration/authentication/). The Kiali Operator Helm Chart is configurable. Check available options and default values by running: From c08abc26b4db05161a58259e609e274f73be8699 Mon Sep 17 00:00:00 2001 From: ChickenchickenLove Date: Wed, 20 Mar 2024 00:09:49 +0900 Subject: [PATCH 3/3] Add missing prefix to `install via helm` --- .../docs/Installation/installation-guide/install-with-helm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/Installation/installation-guide/install-with-helm.md b/content/en/docs/Installation/installation-guide/install-with-helm.md index 09a86b000..38422cc7e 100644 --- a/content/en/docs/Installation/installation-guide/install-with-helm.md +++ b/content/en/docs/Installation/installation-guide/install-with-helm.md @@ -84,7 +84,7 @@ cr.namespace=istio-system` flags instructs to create a Kiali CR in the the Kiali operator starts, it will process it to deploy Kiali. After Kiali has started, you can access Kiali UI through 'http://localhost:20001' by executing `kubectl port-forward service/kiali -n istio-system 20001:20001` -because of `--set cr.auth.strategy="anonymous"`. But realize that anonymous mode will allow anyone to be able to see and use Kiali. If you wish to require users to authenticate themselves by logging into Kiali, use one of the other [auth strategies](/configuration/authentication/). +because of `--set cr.auth.strategy="anonymous"`. But realize that anonymous mode will allow anyone to be able to see and use Kiali. If you wish to require users to authenticate themselves by logging into Kiali, use one of the other [auth strategies](/docs/configuration/authentication/). The Kiali Operator Helm Chart is configurable. Check available options and default values by running: