Skip to content

Commit

Permalink
updated overview.md with azureblob example (#4796)
Browse files Browse the repository at this point in the history
  • Loading branch information
apthagowda97 authored Apr 18, 2023
1 parent 5c0e897 commit 115d42b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions doc/source/servers/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,24 @@ stringData:
Note: remote name is `gcs` here so urls would take form similar to `gcs:<your bucket>`.
Tip: using `cat gcloud-application-credentials.json | jq -c .` can help to easily collapse credentials.json into one line.

### Example Azure Blob with Account Key

Reference: [rclone documentation](https://rclone.org/azureblob/)

```yaml
apiVersion: v1
kind: Secret
metadata:
name: seldon-rclone-secret
type: Opaque
stringData:
RCLONE_CONFIG_AZUREBLOB_TYPE: azureblob
RCLONE_CONFIG_AZUREBLOB_ACCOUNT: ""
RCLONE_CONFIG_AZUREBLOB_ENV_AUTH: "false"
RCLONE_CONFIG_AZUREBLOB_KEY: ""
```
Note: remote name is `azureblob` here so urls would take form similar to `azureblob:<container>/path/to/dir`.

### Directly from PVC

You are able to make models available directly from PVCs instead of object stores. This may be desirable if you have a lot of very large files and you want to avoid uploading/downloading, for example through NFS drives.
Expand Down

0 comments on commit 115d42b

Please sign in to comment.