diff --git a/USERS.md b/USERS.md index b8f4e2567a95..c03fae52659a 100644 --- a/USERS.md +++ b/USERS.md @@ -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/) diff --git a/docs/configure-artifact-repository.md b/docs/configure-artifact-repository.md index ef65ace54225..c0905dec6e3b 100644 --- a/docs/configure-artifact-repository.md +++ b/docs/configure-artifact-repository.md @@ -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 @@ -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.