Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions ADVANCED.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,29 @@ docker run \
```


## Microsoft Azure Blob Storage

In order to use Microsoft Azure Blob Storage Service, you need to create a
storage account from Azure Management Portal or other management scripts.

In the configuration use `azureblob` flavor.

1. `azure_storage_account_name`: string, storage account name
1. `azure_storage_account_key`: string, storage account key
1. `azure_storage_container`: string, container name to be used or created
1. `azure_use_https`: boolean, (default:true) use HTTPS for communication

Example configuration:

```yaml
prod:
storage: azureblob
azure_storage_account_name: contoso
azure_storage_account_key: Fb8cgp___YOUR_KEY___/o8isRdsuHqrHF==
azure_storage_container: registry
azure_use_https: true
```

## Advanced configuration options

### Privileged access
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ In the `config_sample.yml` file, you'll see several sample flavors:
1. `local`: stores data on the local filesystem
1. `s3`: stores data in an AWS S3 bucket
1. `ceph-s3`: stores data in a Ceph cluster via a Ceph Object Gateway, using the S3 API
1. `azure`: stores data in an Microsoft Azure Blob Storage
1. `azureblob`: stores data in an Microsoft Azure Blob Storage ([(docs)](ADVANCED.md))
1. `dev`: basic configuration using the `local` flavor
1. `test`: used by unit tests
1. `prod`: production configuration (basically a synonym for the `s3` flavor)
Expand Down