Skip to content

Commit

Permalink
Update azure storage docs (triton-inference-server#3079)
Browse files Browse the repository at this point in the history
* Add env var setup information for using Azure Storage

* Fix AZURE_STORAGE_CONTAINER -> AZURE_STORAGE_ACCOUNT

* add hemant's suggestions
  • Loading branch information
rmccorm4 authored Jul 6, 2021
1 parent ff501a9 commit 1de38b3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/model_repository.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,17 @@ must be prefixed with as://.
$ tritonserver --model-repository=as://account_name/container_name/path/to/model/repository ...
```

When using Azure Storage, you must set the `AZURE_STORAGE_ACCOUNT` and `AZURE_STORAGE_KEY`
environment variables to an account that has access to the Azure Storage repository.

If you don't know your `AZURE_STORAGE_KEY` and have your Azure CLI correctly configured,
here's an example of how to find a key corresponding to your `AZURE_STORAGE_ACCOUNT`:

```bash
$ export AZURE_STORAGE_ACCOUNT="account_name"
$ export AZURE_STORAGE_KEY=$(az storage account keys list -n $AZURE_STORAGE_ACCOUNT --query "[0].value")
```

## Model Versions

Each model can have one or more versions available in the model
Expand Down

0 comments on commit 1de38b3

Please sign in to comment.