summaryrefslogtreecommitdiffstats
path: root/playbooks/aws/openshift-cluster/provision_install.yml
blob: bd154fa83483f9d182ac17f175f10df00cd48124 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
# Once an AMI is built then this script is used for
# the one stop shop to provision and install a cluster
# this playbook is run with the following parameters:
# ansible-playbook -i openshift-ansible-inventory provision_install.yml
- name: Include the provision.yml playbook to create cluster
  import_playbook: provision.yml

- name: Include the install.yml playbook to install cluster on masters
  import_playbook: install.yml

- name: provision the infra/compute playbook to install node resources
  import_playbook: provision_nodes.yml

- name: Include the accept.yml playbook to accept nodes into the cluster
  import_playbook: accept.yml

- name: Include the components playbook to finish the hosted configuration
  import_playbook: ../../common/private/components.yml