1234567891011121314151617181920212223 |
- # This playbook installs onto a provisioned cluster
- ---
- - hosts: localhost
- connection: local
- tasks:
- - name: place all scale groups into Ansible groups
- include_role:
- name: openshift_gcp
- tasks_from: setup_scale_group_facts.yml
- vars:
- all_nodes: true
- - import_playbook: ../../init/main.yml
- vars:
- l_init_fact_hosts: "oo_masters_to_config"
- l_openshift_version_set_hosts: "all:!all"
- l_sanity_check_hosts: "{{ groups['oo_masters_to_config'] }}"
- - name: Setup node-group configmaps
- hosts: oo_first_master
- tasks:
- - import_role:
- name: openshift_node_group
|