version.yml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. - name: Determine openshift_version to configure on first master
  3. hosts: "{{ l_openshift_version_determine_hosts | default('oo_first_master') }}"
  4. tasks:
  5. - include_role:
  6. name: openshift_version
  7. tasks_from: first_master.yml
  8. # set_version_facts is a custom module in lib_utils
  9. # this will set_fact booleans for openshift_verison
  10. - name: set openshift_version booleans (first master)
  11. set_version_facts:
  12. version: "{{ openshift_current_version | default(openshift_version) }}"
  13. # NOTE: We set this even on etcd hosts as they may also later run as masters,
  14. # and we don't want to install wrong version of docker and have to downgrade
  15. # later.
  16. - name: Set openshift_version for etcd, node, and master hosts
  17. hosts: "{{ l_openshift_version_set_hosts | default(l_default_version_set_hosts) }}"
  18. vars:
  19. l_default_version_set_hosts: "oo_etcd_to_config:oo_nodes_to_config:oo_masters_to_config:!oo_first_master"
  20. l_first_master_openshift_version: "{{ hostvars[groups.oo_first_master.0].openshift_version }}"
  21. l_first_master_openshift_pkg_version: "{{ hostvars[groups.oo_first_master.0].openshift_pkg_version | default('') }}"
  22. l_first_master_openshift_image_tag: "{{ hostvars[groups.oo_first_master.0].openshift_image_tag}}"
  23. tasks:
  24. - set_fact:
  25. openshift_version: "{{ l_first_master_openshift_version }}"
  26. openshift_pkg_version: "{{ l_first_master_openshift_pkg_version }}"
  27. openshift_image_tag: "{{ l_first_master_openshift_image_tag }}"
  28. # set_version_facts is a custom module in lib_utils
  29. # this will set_fact booleans for openshift_verison
  30. - name: set openshift_version booleans (masters and nodes)
  31. set_version_facts:
  32. version: "{{ openshift_current_version | default(openshift_version) }}"