From 6d82f180d214951a69dccca986cd060a7856872a Mon Sep 17 00:00:00 2001 From: Prashant Arya Date: Fri, 3 Jan 2020 23:05:40 +0530 Subject: [PATCH] Adding helm3 command (#18095) * Adding helm3 command helm3 doesn't have name flag hence above command fails when user is using helm3(which is latest in its kind) * adding tab for Helm3 and defaulting it * addressing comments --- .../install-service-catalog-using-helm.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/content/en/docs/tasks/service-catalog/install-service-catalog-using-helm.md b/content/en/docs/tasks/service-catalog/install-service-catalog-using-helm.md index 19f3399e49..2fbed683c5 100644 --- a/content/en/docs/tasks/service-catalog/install-service-catalog-using-helm.md +++ b/content/en/docs/tasks/service-catalog/install-service-catalog-using-helm.md @@ -93,11 +93,18 @@ kubectl create clusterrolebinding tiller-cluster-admin \ Install Service Catalog from the root of the Helm repository using the following command: +{{< tabs name="helm-versions" >}} +{{% tab name="Helm version 3" %}} ```shell -helm install svc-cat/catalog \ - --name catalog --namespace catalog +helm install catalog svc-cat/catalog --namespace catalog ``` - +{{% /tab %}} +{{% tab name="Helm version 2" %}} +```shell +helm install svc-cat/catalog --name catalog --namespace catalog +``` +{{% /tab %}} +{{< /tabs >}} {{% /capture %}}