Merge pull request #7817 from ninjadq/cherry-pick-180_fix_typo_of_azure_cfg

Fix typo in azure config
This commit is contained in:
Qian Deng 2019-05-16 10:53:37 +08:00 committed by GitHub
commit 6b06587aa4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,7 @@ def prepare_chartmuseum(config_dict):
if storage_provider_config_map.get("keyfile"):
storage_provider_config_options.append('GOOGLE_APPLICATION_CREDENTIALS=%s' % '/etc/chartserver/gcs.key')
elif storage_provider_name == 'gcs':
elif storage_provider_name == 'azure':
# azure storage
storage_driver = "microsoft"
storage_provider_config_options.append("STORAGE_MICROSOFT_CONTAINER=%s" % ( storage_provider_config_map.get("container") or '') )