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

Commit a44c88f

Browse files
committed
move azureblob configuration to ADVANCED.md
Signed-off-by: Ahmet Alp Balkan <[email protected]>
1 parent edc4879 commit a44c88f

File tree

2 files changed

+24
-23
lines changed

2 files changed

+24
-23
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 & 23 deletions
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. `azureblob`: 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)
@@ -323,28 +323,6 @@ 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-
348326
Your own config
349327
===============
350328

0 commit comments

Comments
 (0)