scaleup.yml 1.0 KB

123456789101112131415161718192021222324252627282930
  1. ---
  2. - include: ../openshift-cluster/evaluate_groups.yml
  3. - name: Gather facts
  4. hosts: oo_etcd_to_config:oo_masters_to_config:oo_nodes_to_config
  5. roles:
  6. - openshift_facts
  7. - name: Gather and set facts for first master
  8. hosts: oo_first_master
  9. vars:
  10. openshift_master_count: "{{ groups.oo_masters | length }}"
  11. pre_tasks:
  12. - set_fact:
  13. openshift_master_default_subdomain: "{{ lookup('oo_option', 'openshift_master_default_subdomain') | default(None, true) }}"
  14. when: openshift_master_default_subdomain is not defined
  15. roles:
  16. - openshift_master_facts
  17. - name: Configure docker hosts
  18. hosts: oo_nodes_to_config
  19. vars:
  20. docker_additional_registries: "{{ lookup('oo_option', 'docker_additional_registries') | oo_split }}"
  21. docker_insecure_registries: "{{ lookup('oo_option', 'docker_insecure_registries') | oo_split }}"
  22. docker_blocked_registries: "{{ lookup('oo_option', 'docker_blocked_registries') | oo_split }}"
  23. roles:
  24. - openshift_facts
  25. - openshift_docker
  26. - include: ../openshift-node/config.yml