|
@@ -59,6 +59,7 @@ def base_openshift_inventory(cluster_hosts):
|
|
|
inventory['glusterfs'] = {'hosts': cns}
|
|
|
inventory['dns'] = {'hosts': dns}
|
|
|
inventory['lb'] = {'hosts': load_balancers}
|
|
|
+ inventory['localhost'] = {'ansible_connection': 'local'}
|
|
|
|
|
|
return inventory
|
|
|
|
|
@@ -144,10 +145,9 @@ def build_inventory():
|
|
|
|
|
|
stout = _get_stack_outputs(cloud)
|
|
|
if stout is not None:
|
|
|
- inventory['_meta']['hostvars']['localhost'] = {
|
|
|
- 'openshift_openstack_api_lb_provider': stout['api_lb_provider'],
|
|
|
- 'openshift_openstack_api_lb_port_id': stout['api_lb_vip_port_id'],
|
|
|
- 'openshift_openstack_api_lb_sg_id': stout['api_lb_sg_id']}
|
|
|
+ inventory['localhost']['openshift_openstack_api_lb_provider'] = stout['api_lb_provider']
|
|
|
+ inventory['localhost']['openshift_openstack_api_lb_port_id'] = stout['api_lb_vip_port_id']
|
|
|
+ inventory['localhost']['openshift_openstack_api_lb_sg_id'] = stout['api_lb_sg_id']
|
|
|
kuryr_vars = _get_kuryr_vars(cloud, stout)
|
|
|
if kuryr_vars:
|
|
|
inventory['OSEv3']['vars'] = kuryr_vars
|