scaleup.yml 612 B

12345678910111213141516171819202122
  1. ---
  2. - hosts: localhost
  3. connection: local
  4. become: no
  5. gather_facts: no
  6. tasks:
  7. - include_vars: ../../byo/openshift-cluster/cluster_hosts.yml
  8. - add_host:
  9. name: "{{ item }}"
  10. groups: l_oo_all_hosts
  11. with_items: "{{ g_all_hosts }}"
  12. - hosts: l_oo_all_hosts
  13. gather_facts: no
  14. tasks:
  15. - include_vars: ../../byo/openshift-cluster/cluster_hosts.yml
  16. - include: ../../common/openshift-master/scaleup.yml
  17. vars:
  18. openshift_cluster_id: "{{ cluster_id | default('default') }}"
  19. openshift_debug_level: "{{ debug_level | default(2) }}"
  20. openshift_deployment_type: "{{ deployment_type }}"