This repository was archived by the owner on Sep 12, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ In the `config_sample.yml` file, you'll see several sample flavors:
65651 . ` local ` : stores data on the local filesystem
66661 . ` s3 ` : stores data in an AWS S3 bucket
67671 . ` 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 ) )
69691 . ` dev ` : basic configuration using the ` local ` flavor
70701 . ` test ` : used by unit tests
71711 . ` prod ` : production configuration (basically a synonym for the ` s3 ` flavor)
You can’t perform that action at this time.
0 commit comments