Skip to content

Commit

Permalink
Update getting-started.md (argoproj#2872)
Browse files Browse the repository at this point in the history
  • Loading branch information
ntwrkguru authored Apr 28, 2020
1 parent d66224e commit f03cda6
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,23 +128,22 @@ kubectl edit cm -n argo workflow-controller-configmap
Add the following:
```yaml
data:
config: |
artifactRepository:
s3:
bucket: my-bucket
endpoint: argo-artifacts.default:9000
insecure: true
# accessKeySecret and secretKeySecret are secret selectors.
# It references the k8s secret named 'argo-artifacts'
# which was created during the minio helm install. The keys,
# 'accesskey' and 'secretkey', inside that secret are where the
# actual minio credentials are stored.
accessKeySecret:
name: argo-artifacts
key: accesskey
secretKeySecret:
name: argo-artifacts
key: secretkey
artifactRepository:
s3:
bucket: my-bucket
endpoint: argo-artifacts.default:9000
insecure: true
# accessKeySecret and secretKeySecret are secret selectors.
# It references the k8s secret named 'argo-artifacts'
# which was created during the minio helm install. The keys,
# 'accesskey' and 'secretkey', inside that secret are where the
# actual minio credentials are stored.
accessKeySecret:
name: argo-artifacts
key: accesskey
secretKeySecret:
name: argo-artifacts
key: secretkey
```
NOTE: the Minio secret is retrieved from the namespace you use to run Workflows. If Minio is
Expand Down

0 comments on commit f03cda6

Please sign in to comment.