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 \
186
186
```
187
187
188
188
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
+
189
212
## Advanced configuration options
190
213
191
214
### 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:
65
65
1 . ` local ` : stores data on the local filesystem
66
66
1 . ` s3 ` : stores data in an AWS S3 bucket
67
67
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 ) )
69
69
1 . ` dev ` : basic configuration using the ` local ` flavor
70
70
1 . ` test ` : used by unit tests
71
71
1 . ` prod ` : production configuration (basically a synonym for the ` s3 ` flavor)
You can’t perform that action at this time.
0 commit comments