From 38a997a026d6bf855421fb8dbfb657e39d42bd44 Mon Sep 17 00:00:00 2001 From: Shamsher Ansari Date: Tue, 17 Dec 2019 21:27:50 +0530 Subject: [PATCH] Set Kiali username and password on separate prompt (#6079) * Set Kiali username and password on separate prompt * Fix linting errors * Revert zsh prompt to single copiable box * Fix review comment suggestions * Remove spacing Co-Authored-By: Frank Budinsky --- content/en/docs/tasks/observability/kiali/index.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/content/en/docs/tasks/observability/kiali/index.md b/content/en/docs/tasks/observability/kiali/index.md index a471292f60..5118c70c4a 100644 --- a/content/en/docs/tasks/observability/kiali/index.md +++ b/content/en/docs/tasks/observability/kiali/index.md @@ -38,10 +38,17 @@ If you plan on installing Kiali using the Istio demo profile as described in the Create a secret in your Istio namespace with the credentials that you use to authenticate to Kiali. -First, define the credentials you want to use as the Kiali username and passphrase: +First, define the credentials you want to use as the Kiali username and passphrase. + +Enter a Kiali username when prompted: {{< text bash >}} $ KIALI_USERNAME=$(read -p 'Kiali Username: ' uval && echo -n $uval | base64) +{{< /text >}} + +Enter a Kiali passphrase when prompted: + +{{< text bash >}} $ KIALI_PASSPHRASE=$(read -sp 'Kiali Passphrase: ' pval && echo -n $pval | base64) {{< /text >}}