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

Commit 89ea213

Browse files
Update walkthrough.md (#2896)
Provide extra instruction for using Helm v3 when installing and deleting mini broker.
1 parent 880e400 commit 89ea213

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

docs/walkthrough.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ Otherwise, to install with sensible defaults, run the following command:
3131

3232
```console
3333
helm repo add minibroker https://minibroker.blob.core.windows.net/charts
34+
```
35+
If you are using Helm v3, run this command:
36+
```console
37+
helm install minibroker minibroker/minibroker --namespace minibroker --create-namespace
38+
```
39+
For older versions of Helm, use the --name option:
40+
```console
3441
helm install --name minibroker --namespace minibroker minibroker/minibroker
3542
```
3643

@@ -459,7 +466,14 @@ No resources found.
459466

460467
# Step 9 - Final Cleanup
461468

462-
To clean up minibroker deployment, delete the helm release:
469+
To clean up minibroker deployment, delete the helm release.
470+
471+
If you are using Helm v3, run this command:
472+
473+
```console
474+
helm delete minibroker
475+
```
476+
For older versions of Helm, use the --purge option:
463477

464478
```console
465479
helm delete --purge minibroker

0 commit comments

Comments
 (0)