diff options
author | Vadim Rutkovsky <vrutkovs@redhat.com> | 2018-01-05 22:42:09 +0100 |
---|---|---|
committer | Vadim Rutkovsky <vrutkovs@redhat.com> | 2018-01-06 00:59:20 +0100 |
commit | 3c492a23403ea2648b084044cfd0464aeb31991a (patch) | |
tree | c6267e52b84228b6d0fd01d34fe674ef0903efe7 | |
parent | 0c5f70ad87e25f26a074613ad4576d5bcd759054 (diff) | |
download | openshift-3c492a23403ea2648b084044cfd0464aeb31991a.tar.gz openshift-3c492a23403ea2648b084044cfd0464aeb31991a.tar.bz2 openshift-3c492a23403ea2648b084044cfd0464aeb31991a.tar.xz openshift-3c492a23403ea2648b084044cfd0464aeb31991a.zip |
upgrades: set openshift_client_binary fact when running on oo_first_master host
This sets openshift_client_binary var for the first master,
as some roles use this var along with first_master_client_binary.
Not sure if its worth setting this var for the faulty roles instead though.
Signed-off-by: Vadim Rutkovsky <vrutkovs@redhat.com>
-rw-r--r-- | playbooks/init/facts.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/playbooks/init/facts.yml b/playbooks/init/facts.yml index 6759240c9..094db845d 100644 --- a/playbooks/init/facts.yml +++ b/playbooks/init/facts.yml @@ -100,3 +100,5 @@ # We need to setup openshift_client_binary here for special uses of delegate_to in # later roles and plays. first_master_client_binary: "{{ openshift_client_binary }}" + #Some roles may require this to be set for first master + openshift_client_binary: "{{ openshift_client_binary }}" |