271bc72dae
Change-Id: I9d7f0bf7daa6d1abe31de0e76a508820ed123c28 Story: 2007950 Task: 40426
20 lines
690 B
Django/Jinja
20 lines
690 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
{% for line in (admin_openrc.content | b64decode).splitlines() %}
|
|
{% if "export OS_AUTH_URL" in line %}
|
|
export OS_AUTH_URL={{ public_openrc_auth_url }}
|
|
{% elif "export OS_INTERFACE" in line %}
|
|
export OS_INTERFACE=public
|
|
{% elif "export OS_ENDPOINT_TYPE" in line %}
|
|
export OS_ENDPOINT_TYPE=publicURL
|
|
{% elif "export OS_MANILA_ENDPOINT_TYPE" in line %}
|
|
export OS_MANILA_ENDPOINT_TYPE=publicURL
|
|
{% elif "export OS_MISTRAL_ENDPOINT_TYPE" in line %}
|
|
export OS_MISTRAL_ENDPOINT_TYPE=publicURL
|
|
{% elif "export OS_CACERT" in line and kolla_external_fqdn_cacert is not none %}
|
|
export OS_CACERT={{ kolla_external_fqdn_cacert }}
|
|
{% else %}
|
|
{{ line }}
|
|
{% endif %}
|
|
{% endfor %}
|