summaryrefslogtreecommitdiffstats
path: root/playbooks/openstack/openshift-cluster/pre-install.yml
blob: c9f333b921be9e266e5d7ac09be178865766b5bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
###############################
# OpenShift Pre-Requisites

# - subscribe hosts
# - prepare docker
# - other prep (install additional packages, etc.)
#
- hosts: OSEv3
  become: true
  roles:
    - { role: subscription-manager, when: hostvars.localhost.rhsm_register|default(False), tags: 'subscription-manager', ansible_sudo: true }
    - role: docker-storage-setup
      docker_dev: /dev/vdb
      tags: 'docker'
    - { role: openshift-prep, tags: 'openshift-prep' }

- hosts: localhost:cluster_hosts
  become: False
  tasks:
    - include: pre_tasks.yml