Latest updates

This commit is contained in:
Chris Houseknecht
2017-04-11 16:44:59 -04:00
parent 4200457235
commit 33d187f6a2
2 changed files with 2 additions and 2 deletions

View File

@@ -271,7 +271,7 @@ class KubernetesAnsibleModule(AnsibleModule):
if meta_key in ('name', 'namespace', 'labels', 'annotations'):
parameters[meta_key] = meta_value
elif key in self.helper.argspec and value is not None:
parameters[key] = value
parameters[key] = value
elif isinstance(value, dict):
self._add_parameter(value, [key], parameters)
self.helper.log("Request to parameters: {}".format(json.dumps(parameters)))

View File

@@ -3,7 +3,7 @@
- name: Intall latest openshift client
pip:
name: git+https://github.com/openshift/openshift-restclient-python.git#egg=openshift
name: https://github.com/openshift/openshift-restclient-python/archive/master.tar.gz
state: latest
virtualenv: "{{ virtualenv }}"
when: install_python_requirements