Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Adding helm3 command #2761

Merged
merged 1 commit into from
Dec 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,15 +162,26 @@ Now that your cluster and Helm are configured properly, installing
Service Catalog is simple:

```console
# Helm2
helm install svc-cat/catalog \
--name catalog --namespace catalog

# Helm3
helm install svc-cat/catalog \
catalog --namespace catalog

```

If you want to install older version of service catalog (for instance the API-server based version from v0.2 branch) append branch name to the chart name:

```console
# Helm2
helm install svc-cat/catalog-v0.2 \
--name catalog --namespace catalog

# Helm3
helm install svc-cat/catalog-v0.2 \
catalog --namespace catalog
```

# Installing the Service Catalog CLI
Expand Down