Skip to content

Commit

Permalink
Fix issue: #7288
Browse files Browse the repository at this point in the history
Signed-off-by: liqiang-fit2cloud <[email protected]>
  • Loading branch information
liqiang-fit2cloud committed May 9, 2019
1 parent b4d766c commit 218889a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions make/photon/prepare/utils/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,13 @@ def prepare_chartmuseum(config_dict):
elif storage_provider_name == 'oss':
# aliyun OSS
storage_driver = "alibaba"
storage_provider_config_options.append("STORAGE_ALIBABA_BUCKET=%s" % ( storage_provider_config_map.get("bucket") or '') )
bucket = storage_provider_config_map.get("bucket") or ''
endpoint = storage_provider_config_map.get("endpoint") or ''
if endpoint.startswith(bucket + "."):
endpoint = endpoint.replace(bucket + ".", "")
storage_provider_config_options.append("STORAGE_ALIBABA_BUCKET=%s" % bucket )
storage_provider_config_options.append("STORAGE_ALIBABA_ENDPOINT=%s" % endpoint )
storage_provider_config_options.append("STORAGE_ALIBABA_PREFIX=%s" % ( storage_provider_config_map.get("rootdirectory") or '') )
storage_provider_config_options.append("STORAGE_ALIBABA_ENDPOINT=%s" % ( storage_provider_config_map.get("endpoint") or '') )
storage_provider_config_options.append("ALIBABA_CLOUD_ACCESS_KEY_ID=%s" % ( storage_provider_config_map.get("accesskeyid") or '') )
storage_provider_config_options.append("ALIBABA_CLOUD_ACCESS_KEY_SECRET=%s" % ( storage_provider_config_map.get("accesskeysecret") or '') )
else:
Expand Down

0 comments on commit 218889a

Please sign in to comment.