summaryrefslogtreecommitdiffstats
path: root/playbooks/init/version.yml
blob: 37a5284d55cb12d32666614d0882c8a46febf585 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
# NOTE: requires openshift_facts be run
- name: Determine openshift_version to configure on first master
  hosts: oo_first_master
  roles:
  - openshift_version

# NOTE: We set this even on etcd hosts as they may also later run as masters,
# and we don't want to install wrong version of docker and have to downgrade
# later.
- name: Set openshift_version for etcd, node, and master hosts
  hosts: oo_etcd_to_config:oo_nodes_to_config:oo_masters_to_config:!oo_first_master
  vars:
    openshift_version: "{{ hostvars[groups.oo_first_master.0].openshift_version }}"
  pre_tasks:
  - set_fact:
      openshift_pkg_version: -{{ openshift_version }}
    when: openshift_pkg_version is not defined
  - debug: msg="openshift_pkg_version set to {{ openshift_pkg_version }}"
  roles:
  - openshift_version