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

Commit edc4879

Browse files
committed
more docs for azureblob flavor (#664)
Signed-off-by: Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
1 parent 758a9f9 commit edc4879

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

README.md

Lines changed: 23 additions & 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
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)
@@ -323,6 +323,28 @@ prod:
323323
s3_secret_key: xdDowwlK7TJajV1Y7EoOZrmuPEJlHYcNP2k4j49T
324324
```
325325

326+
### storage: azureblob
327+
328+
In order to use Microsoft Azure Blob Storage Service, you need to create a storage account
329+
from Azure Management Portal or other management scripts.
330+
331+
1. `azure_storage_account_name`: string, storage account name
332+
1. `azure_storage_account_key`: string, storage account key
333+
1. `azure_storage_container`: string, container name to be used or created
334+
1. `azure_use_https`: boolean, (default:true) use HTTPS for communication
335+
336+
Example:
337+
338+
```yaml
339+
prod:
340+
storage: azureblob
341+
azure_storage_account_name: contoso
342+
azure_storage_account_key: Fb8cgp___YOUR_KEY___/o8isRdsuHqrHF==
343+
azure_storage_container: registry
344+
azure_use_https: true
345+
```
346+
347+
326348
Your own config
327349
===============
328350

0 commit comments

Comments
 (0)