ConfigProviders abstract over path construction

Fixes issue where certs can't be uploaded in UI in k8s
This commit is contained in:
Evan Cordell 2017-05-17 08:12:09 -04:00
parent 702cdf59ff
commit 01b59e8d66
5 changed files with 32 additions and 3 deletions

View file

@ -110,3 +110,6 @@ class FileConfigProvider(BaseProvider):
return True
return False
def get_volume_path(self, directory, file):
return os.path.join(directory, file)