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 %}}