Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.

Commit 36370c4

Browse files
committed
Merge pull request #665 from ahmetalpbalkan/master
more docs for azureblob flavor
2 parents 8a662c0 + a44c88f commit 36370c4

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

ADVANCED.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,29 @@ docker run \
186186
```
187187

188188

189+
## Microsoft Azure Blob Storage
190+
191+
In order to use Microsoft Azure Blob Storage Service, you need to create a
192+
storage account from Azure Management Portal or other management scripts.
193+
194+
In the configuration use `azureblob` flavor.
195+
196+
1. `azure_storage_account_name`: string, storage account name
197+
1. `azure_storage_account_key`: string, storage account key
198+
1. `azure_storage_container`: string, container name to be used or created
199+
1. `azure_use_https`: boolean, (default:true) use HTTPS for communication
200+
201+
Example configuration:
202+
203+
```yaml
204+
prod:
205+
storage: azureblob
206+
azure_storage_account_name: contoso
207+
azure_storage_account_key: Fb8cgp___YOUR_KEY___/o8isRdsuHqrHF==
208+
azure_storage_container: registry
209+
azure_use_https: true
210+
```
211+
189212
## Advanced configuration options
190213
191214
### Privileged access

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ In the `config_sample.yml` file, you'll see several sample flavors:
6565
1. `local`: stores data on the local filesystem
6666
1. `s3`: stores data in an AWS S3 bucket
6767
1. `ceph-s3`: stores data in a Ceph cluster via a Ceph Object Gateway, using the S3 API
68-
1. `azure`: stores data in an Microsoft Azure Blob Storage
68+
1. `azureblob`: stores data in an Microsoft Azure Blob Storage ([(docs)](ADVANCED.md))
6969
1. `dev`: basic configuration using the `local` flavor
7070
1. `test`: used by unit tests
7171
1. `prod`: production configuration (basically a synonym for the `s3` flavor)

0 commit comments

Comments
 (0)