Skip to content

Commit

Permalink
Improve Install via Helm. (#765)
Browse files Browse the repository at this point in the history
* Improve Install via Helm.

* Improve Install via Helm. (Add description about auth.strategy)

Co-authored-by: John Mazzitelli <mazz@redhat.com>

* Add missing prefix to `install via helm`

---------

Co-authored-by: John Mazzitelli <mazz@redhat.com>
  • Loading branch information
chickenchickenlove and jmazzitelli authored Mar 19, 2024
1 parent d47d76b commit 2f28068
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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"`. 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:

Expand Down

0 comments on commit 2f28068

Please sign in to comment.