Skip to content

Commit d49b3a2

Browse files
Merge pull request #110 from bradmwilliams/exec-qualified-names
Adding the ability to run exec against qualified objects
2 parents aea6c97 + df04453 commit d49b3a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ansible/rebuild_module.digest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e316ec69f113aa0e50197fc0595abad0 -
1+
f9994a0d7a3bf4549d276b41fea5b2dd -

ansible/roles/openshift_client_python/library/openshift_client_python.py

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/openshift/apiobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ def execute(self, cmd_to_exec=None, stdin=None, container_name=None, auto_raise=
879879

880880
r = Result("exec")
881881
r.add_action(
882-
oc_action(self.context, "exec", cmd_args=[oc_args, self.name(), "--", cmd_to_exec],
882+
oc_action(self.context, "exec", cmd_args=[oc_args, self.qname(), "--", cmd_to_exec],
883883
stdin_str=stdin, namespace=self.namespace(if_missing=None)))
884884
if auto_raise:
885885
r.fail_if(

0 commit comments

Comments
 (0)