diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-12-13 08:28:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-13 08:28:03 -0500 |
commit | 374b5386d53e92052836db67f863057533239da4 (patch) | |
tree | b64bd192b594b9754271c8ab967c20c7c1bdf85c /roles | |
parent | 811548dbc58530255cda61fbf34c65c9ed0e95c0 (diff) | |
parent | 9d4a4959e7cd7146071bfafdad894b58d39c855e (diff) | |
download | openshift-374b5386d53e92052836db67f863057533239da4.tar.gz openshift-374b5386d53e92052836db67f863057533239da4.tar.bz2 openshift-374b5386d53e92052836db67f863057533239da4.tar.xz openshift-374b5386d53e92052836db67f863057533239da4.zip |
Merge pull request #6453 from sdodson/fix-versioned-install
Ensure that clients are version bound
Diffstat (limited to 'roles')
-rw-r--r-- | roles/openshift_cli/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_cli/tasks/main.yml b/roles/openshift_cli/tasks/main.yml index a90143aa3..888aa8f0c 100644 --- a/roles/openshift_cli/tasks/main.yml +++ b/roles/openshift_cli/tasks/main.yml @@ -1,6 +1,6 @@ --- - name: Install clients - package: name={{ openshift_service_type }}-clients state=present + package: name={{ openshift_service_type }}-clients{{ openshift_pkg_version | default('') }} state=present when: not openshift.common.is_containerized | bool register: result until: result | success |