Add missing vars for tripleo-standalone-vars

It adds the controlplane missing vars which are needed
for spinning a instance on external compute.

Signed-off-by: Chandan Kumar (raukadah) <chkumar@redhat.com>
Co-authored-by: James Slagle <jslagle@redhat.com>
Change-Id: I0f9d4e493190ebf311c39f0a4ac52440028b5d07
This commit is contained in:
Chandan Kumar (raukadah) 2022-11-07 21:59:24 +01:00
parent cf78a4bc9b
commit a45749ea35
1 changed files with 32 additions and 0 deletions

View File

@ -94,6 +94,8 @@ STANDALONE_VARS = {
},
'tripleo_nova_compute_service_user_username': {
'template': 'nova',
'section': 'service_user',
'option': 'username'
},
'tripleo_nova_compute_service_user_password': {
'template': '{{ service_user_password }}',
@ -181,6 +183,36 @@ STANDALONE_VARS = {
'section': 'placement',
'option': 'valid_interfaces'
},
'tripleo_nova_compute_neutron_auth_type': {
'template': 'v3password',
'section': 'neutron',
'option': 'auth_type'
},
'tripleo_nova_compute_neutron_project_name': {
'template': 'service',
'section': 'neutron',
'option': 'project_name'
},
'tripleo_nova_compute_neutron_user_domain_name': {
'template': 'Default',
'section': 'neutron',
'option': 'user_domain_name'
},
'tripleo_nova_compute_neutron_project_domain_name': {
'template': 'Default',
'section': 'neutron',
'option': 'project_domain_name'
},
'tripleo_nova_compute_neutron_region_name': {
'template': 'regionOne',
'section': 'neutron',
'option': 'region_name'
},
'tripleo_nova_compute_neutron_username': {
'template': 'neutron',
'section': 'neutron',
'option': 'username'
},
'tripleo_ovn_dbs': {
'template': '{{ ovn_dbs }}',
},