Properly format API key when set in an enviroment variable (#42202)

This commit is contained in:
Fabian von Feilitzsch 2018-07-13 16:31:22 -04:00 committed by ansibot
commit 0421305254

View file

@ -148,6 +148,9 @@ class K8sAnsibleMixin(object):
elif key in auth_args and value is None: elif key in auth_args and value is None:
env_value = os.getenv('K8S_AUTH_{0}'.format(key.upper()), None) env_value = os.getenv('K8S_AUTH_{0}'.format(key.upper()), None)
if env_value is not None: if env_value is not None:
if key == 'api_key':
setattr(configuration, key, {'authorization': "Bearer {0}".format(env_value)})
else:
setattr(configuration, key, env_value) setattr(configuration, key, env_value)
auth[key] = env_value auth[key] = env_value