summaryrefslogtreecommitdiffstats
path: root/roles/openshift_openstack/tasks/node-packages.yml
blob: 7864f526955074c167cb95f3e779c0670c887abc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
# TODO: subscribe to RHEL and install docker and other packages here

- name: Install required packages
  yum:
    name: "{{ item }}"
    state: latest
  with_items: "{{ openshift_openstack_required_packages }}"

- name: Install debug packages (optional)
  yum:
    name: "{{ item }}"
    state: latest
  with_items: "{{ openshift_openstack_debug_packages }}"
  when: openshift_openstack_install_debug_packages|bool