Skip to content

Commit

Permalink
docs: Update doc based on helm 3.x changes (#1843)
Browse files Browse the repository at this point in the history
  • Loading branch information
whynowy authored and sarabala1979 committed Dec 17, 2019
1 parent 7888989 commit 9035286
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 4 additions & 3 deletions docs/configure-artifact-repository.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ This section shows how to configure the artifact repository. Subsequent sections
## Configuring Minio

```
$ brew install kubernetes-helm # mac
$ helm init
$ helm install stable/minio --name argo-artifacts --set service.type=LoadBalancer
$ brew install helm # mac, helm 3.x
$ helm repo add stable https://kubernetes-charts.storage.googleapis.com/ # official Helm stable charts
$ helm repo update
$ helm install argo-artifacts stable/minio --set service.type=LoadBalancer --set fullnameOverride=argo-artifacts
```

Login to the Minio UI using a web browser (port 9000) after obtaining the external IP using `kubectl`.
Expand Down
3 changes: 1 addition & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,7 @@ This tutorial uses Minio for the sake of portability.

Install Minio:
```sh
helm install stable/minio \
--name argo-artifacts \
helm install argo-artifacts stable/minio \
--set service.type=LoadBalancer \
--set defaultBucket.enabled=true \
--set defaultBucket.name=my-bucket \
Expand Down

0 comments on commit 9035286

Please sign in to comment.