|
@@ -1,8 +1,21 @@
|
|
---
|
|
---
|
|
|
|
+- hosts: localhost
|
|
|
|
+ gather_facts: no
|
|
|
|
+ tasks:
|
|
|
|
+ - include_vars: vars.yml
|
|
|
|
+ - include_vars: cluster_hosts.yml
|
|
|
|
+ - add_host:
|
|
|
|
+ name: "{{ item }}"
|
|
|
|
+ groups: l_oo_all_hosts
|
|
|
|
+ with_items: "{{ g_all_hosts }}"
|
|
|
|
+
|
|
|
|
+- hosts: l_oo_all_hosts
|
|
|
|
+ gather_facts: no
|
|
|
|
+ tasks:
|
|
|
|
+ - include_vars: vars.yml
|
|
|
|
+ - include_vars: cluster_hosts.yml
|
|
|
|
+
|
|
- include: ../../common/openshift-cluster/config.yml
|
|
- include: ../../common/openshift-cluster/config.yml
|
|
- vars_files:
|
|
|
|
- - ../../openstack/openshift-cluster/vars.yml
|
|
|
|
- - ../../openstack/openshift-cluster/cluster_hosts.yml
|
|
|
|
vars:
|
|
vars:
|
|
g_nodeonmaster: true
|
|
g_nodeonmaster: true
|
|
g_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
|
|
g_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
|