Skip to content

Commit

Permalink
fix(docs): Bring minio chart instructions up to date (#4586)
Browse files Browse the repository at this point in the history
Signed-off-by: Ranga Krishnan <ranga@bei.re>
  • Loading branch information
bei-re authored Nov 30, 2020
1 parent 6c46aab commit b92d889
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions USERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Currently, the following organizations are **officially** using Argo Workflows:
1. [Ant Group](https://www.antgroup.com/)
1. [AppDirect](https://www.appdirect.com/)
1. [BasisAI](https://basis-ai.com/)
1. [BEI.RE](https://www.bei.re/)
1. [BioBox Analytics](https://biobox.io)
1. [BlackRock](https://www.blackrock.com/)
1. [bonprix](https://en.bonprix.de/corporate/our-company/)
Expand Down
11 changes: 6 additions & 5 deletions docs/configure-artifact-repository.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ Subsequent sections will show how to use it.

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

Login to the Minio UI using a web browser (port 9000) after obtaining the
Expand All @@ -38,11 +38,12 @@ On Minikube:
$ minikube service --url argo-artifacts
```

NOTE: When minio is installed via Helm, it uses the following hard-wired default
NOTE: When minio is installed via Helm, it generates
credentials, which you will use to login to the UI:
Use the commands shown below to see the credentials

- AccessKey: AKIAIOSFODNN7EXAMPLE
- SecretKey: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
- AccessKey: kubectl get secret argo-artifacts -o jsonpath='{.data.accesskey}' | base64 --decode
- SecretKey: kubectl get secret argo-artifacts -o jsonpath='{.data.secretkey}' | base64 --decode

Create a bucket named `my-bucket` from the Minio UI.

Expand Down

0 comments on commit b92d889

Please sign in to comment.