eda93fea23
This fix configures the auth_url parameter to use keystone_service_adminurl over the existing keystone_service_adminuri parameter which actually leads to a incomplete URL lacking the API version like /v3/tokens Change-Id: Ic8b353b6d41b48cb9d7d825d26dc932d940994e8 Closes-Bug: #1552394
10 lines
375 B
Bash
10 lines
375 B
Bash
#!/bin/sh
|
|
# {{ ansible_managed }}
|
|
export os_auth_url="{{ keystone_service_adminurl }}"
|
|
export os_admin_user="{{ keystone_admin_user_name }}"
|
|
export os_admin_tenant="{{ keystone_admin_tenant_name }}"
|
|
export os_admin_password="{{ keystone_auth_admin_password }}"
|
|
export pg_virtual_ip="{{ pg_vip }}"
|
|
export pg_username="{{ pg_username }}"
|
|
export pg_password="{{ pg_password }}"
|