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
This commit is contained in:
Prashant Arya
2020-01-03 23:05:40 +05:30
committed by Kubernetes Prow Robot
parent 3e1aafacc3
commit 6d82f180d2
@@ -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 %}}