mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-22 10:15:35 +01:00
Merge pull request #10022 from ninjadq/fix_ca_bundle_path_join
Fix ca bundle path join issue
This commit is contained in:
commit
e5f8c2d779
@ -53,7 +53,10 @@ def validate(conf: dict, **kwargs):
|
||||
# ca_bundle validate
|
||||
if conf.get('registry_custom_ca_bundle_path'):
|
||||
registry_custom_ca_bundle_path = conf.get('registry_custom_ca_bundle_path') or ''
|
||||
ca_bundle_host_path = os.path.join(host_root_dir, registry_custom_ca_bundle_path)
|
||||
if registry_custom_ca_bundle_path.startswith('/data/'):
|
||||
ca_bundle_host_path = registry_custom_ca_bundle_path
|
||||
else:
|
||||
ca_bundle_host_path = os.path.join(host_root_dir, registry_custom_ca_bundle_path.lstrip('/'))
|
||||
try:
|
||||
uid = os.stat(ca_bundle_host_path).st_uid
|
||||
st_mode = os.stat(ca_bundle_host_path).st_mode
|
||||
|
Loading…
Reference in New Issue
Block a user