Skip to content

Commit

Permalink
docs: Update default artifact repository docs to describe process for…
Browse files Browse the repository at this point in the history
… Azure Blob Storage. Fixes argoproj#9595 (argoproj#9597)

docs: update default artifact repository docs for Azure

Signed-off-by: Brian Loss <[email protected]>

Signed-off-by: Brian Loss <[email protected]>
  • Loading branch information
brianloss authored Sep 15, 2022
1 parent 30bd96b commit aa45b34
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/configure-artifact-repository.md
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,28 @@ data:
key: serviceAccountKey
```

### Azure Blob Storage

Argo can use native Azure APIs to access a Azure Blob Storage container.

`accountKeySecret` references to a Kubernetes secret which stores an Azure Blob
Storage account shared key to access the container.

Example:

```bash
$ kubectl edit configmap workflow-controller-configmap -n argo # assumes argo was installed in the argo namespace
...
data:
artifactRepository: |
azure:
container: my-container
blobNameFormat: prefix/in/container #optional, it could reference workflow variables, such as "{{workflow.name}}/{{pod.name}}"
accountKeySecret:
name: my-azure-storage-credentials
key: account-access-key
```

## Accessing Non-Default Artifact Repositories

This section shows how to access artifacts from non-default artifact
Expand Down

0 comments on commit aa45b34

Please sign in to comment.