|
@@ -1,5 +1,4 @@
|
|
---
|
|
---
|
|
-- debug: var=openshift_version
|
|
|
|
# TODO: allow for overriding default ports where possible
|
|
# TODO: allow for overriding default ports where possible
|
|
- fail:
|
|
- fail:
|
|
msg: "SELinux is disabled, This deployment type requires that SELinux is enabled."
|
|
msg: "SELinux is disabled, This deployment type requires that SELinux is enabled."
|
|
@@ -31,21 +30,21 @@
|
|
# We have to add tuned-profiles in the same transaction otherwise we run into depsolving
|
|
# We have to add tuned-profiles in the same transaction otherwise we run into depsolving
|
|
# problems because the rpms don't pin the version properly. This was fixed in 3.1 packaging.
|
|
# problems because the rpms don't pin the version properly. This was fixed in 3.1 packaging.
|
|
- name: Install Node package
|
|
- name: Install Node package
|
|
- action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-node{{ openshift_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }},tuned-profiles-{{ openshift.common.service_type }}-node{{ openshift_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }} state=present"
|
|
|
|
|
|
+ action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-node{{ openshift_pkg_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }},tuned-profiles-{{ openshift.common.service_type }}-node{{ openshift_pkg_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }} state=present"
|
|
when: not openshift.common.is_containerized | bool
|
|
when: not openshift.common.is_containerized | bool
|
|
|
|
|
|
- name: Install sdn-ovs package
|
|
- name: Install sdn-ovs package
|
|
- action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-sdn-ovs{{ openshift_version | oo_image_tag_to_rpm_version(include_dash=True) }} state=present"
|
|
|
|
|
|
+ action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-sdn-ovs{{ openshift_pkg_version | oo_image_tag_to_rpm_version(include_dash=True) }} state=present"
|
|
when: openshift.common.use_openshift_sdn and not openshift.common.is_containerized | bool
|
|
when: openshift.common.use_openshift_sdn and not openshift.common.is_containerized | bool
|
|
|
|
|
|
- name: Pull node image
|
|
- name: Pull node image
|
|
command: >
|
|
command: >
|
|
- docker pull {{ openshift.node.node_image }}{{ ':v' + openshift_version if openshift_version is defined and openshift_version != '' else '' }}
|
|
|
|
|
|
+ docker pull {{ openshift.node.node_image }}:{{ openshift_image_tag }}
|
|
when: openshift.common.is_containerized | bool
|
|
when: openshift.common.is_containerized | bool
|
|
|
|
|
|
- name: Pull OpenVSwitch image
|
|
- name: Pull OpenVSwitch image
|
|
command: >
|
|
command: >
|
|
- docker pull {{ openshift.node.ovs_image }}{{ ':v' + openshift_version if openshift_version is defined and openshift_version != '' else '' }}
|
|
|
|
|
|
+ docker pull {{ openshift.node.ovs_image }}:{{ openshift_image_tag }}
|
|
when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool
|
|
when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool
|
|
|
|
|
|
- name: Install the systemd units
|
|
- name: Install the systemd units
|