ConfigProviders abstract over path construction
Fixes issue where certs can't be uploaded in UI in k8s
This commit is contained in:
parent
702cdf59ff
commit
01b59e8d66
5 changed files with 32 additions and 3 deletions
|
@ -110,3 +110,6 @@ class FileConfigProvider(BaseProvider):
|
|||
return True
|
||||
|
||||
return False
|
||||
|
||||
def get_volume_path(self, directory, file):
|
||||
return os.path.join(directory, file)
|
||||
|
|
Reference in a new issue