1763afc255
mistralclient osc plugin does not support cacert and insecure [1] mistralclient interface support fixed in [2] [1] https://bugs.launchpad.net/python-mistralclient/+bug/1715091 [2] https://review.opendev.org/#/q/topic:bug/1854339 Change-Id: I44726b12358bc3c5898ba952371fb838693aca2c
26 lines
1.0 KiB
Django/Jinja
26 lines
1.0 KiB
Django/Jinja
# Clear any old environment that may conflict.
|
|
for key in $( set | awk '{FS="="} /^OS_/ {print $1}' ); do unset $key ; done
|
|
export OS_PROJECT_DOMAIN_NAME=Default
|
|
export OS_USER_DOMAIN_NAME=Default
|
|
export OS_PROJECT_NAME={{ keystone_admin_project }}
|
|
export OS_TENANT_NAME={{ keystone_admin_project }}
|
|
export OS_USERNAME={{ keystone_admin_user }}
|
|
export OS_PASSWORD={{ keystone_admin_password }}
|
|
export OS_AUTH_URL={{ keystone_admin_url }}/v3
|
|
export OS_INTERFACE=internal
|
|
export OS_ENDPOINT_TYPE=internalURL
|
|
{% if enable_manila | bool %}
|
|
export OS_MANILA_ENDPOINT_TYPE=internalURL
|
|
{% endif %}
|
|
{% if enable_mistral | bool %}
|
|
export OS_MISTRAL_ENDPOINT_TYPE=internalURL
|
|
{% endif %}
|
|
export OS_IDENTITY_API_VERSION=3
|
|
export OS_REGION_NAME={{ openstack_region_name }}
|
|
export OS_AUTH_PLUGIN=password
|
|
{% if kolla_enable_tls_internal | bool and kolla_internal_fqdn_cacert %}
|
|
export OS_CACERT={{ kolla_internal_fqdn_cacert }}
|
|
{% elif kolla_enable_tls_external | bool and kolla_external_fqdn_cacert %}
|
|
export OS_CACERT={{ kolla_external_fqdn_cacert }}
|
|
{% endif %}
|