From a04ce00afe89981dd2466a2caf7887fe11154224 Mon Sep 17 00:00:00 2001 From: Maria Kotlyarevskaya Date: Mon, 1 Aug 2022 18:20:04 +0200 Subject: [PATCH] Update installation documentation Update documentation with this change https://github.com/litmuschaos/litmus-helm/pull/257. Add more details about connecting via NodePort and ClusterIP --- .../version-2.11.0/getting-started/installation.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/website/versioned_docs/version-2.11.0/getting-started/installation.md b/website/versioned_docs/version-2.11.0/getting-started/installation.md index 0bdb33a3..ae73738e 100644 --- a/website/versioned_docs/version-2.11.0/getting-started/installation.md +++ b/website/versioned_docs/version-2.11.0/getting-started/installation.md @@ -68,9 +68,12 @@ kubectl create ns litmus #### Step-3: Install Litmus ChaosCenter ```bash -helm install chaos litmuschaos/litmus --namespace=litmus +helm install chaos litmuschaos/litmus --namespace=litmus --set portal.frontend.service.type=NodePort ``` +> **Note:** If your Kubernetes cluster isn't local, you may want not to expose Litmus via `NodePort`. If so, remove `--set portal.frontend.service.type=NodePort` option. To connect to Litmus UI from your laptop, you can use `port-forward svc/chaos-litmus-frontend-service 9091:9091`. Then you can use your browser and open `127.0.0.1:9091`. + + Expected Output ```