Further fixes to the Kubernetes config provider, and a new set of proper unit tests

This commit is contained in:
Joseph Schorr 2018-05-10 16:44:18 +03:00
parent babb7bb803
commit 2ae69dc651
8 changed files with 181 additions and 107 deletions

View file

@ -291,7 +291,7 @@ class SuperUserConfigFile(ApiResource):
if not uploaded_file:
abort(400)
config_provider.save_volume_file(filename, uploaded_file)
config_provider.save_volume_file(uploaded_file, filename)
return {
'status': True
}