Use internal endpoints for configuration in octavia nodes

When running configuration steps for octavia in octavia nodes, use
internal endpoints since public endpoints may not be available due to
network topology (spine-leaf network + octavia in networkers).

Depends-On: https://review.opendev.org/#/c/674749/

Closes-Bug: #1835171
Change-Id: I242f7bb718b08724da21cafa86d3e8853d0ff453
(cherry picked from tripleo-ansible commit
6deec581ac00b3901570f9f4e4768a266cea37e1)
(cherry picked from commit fd44741029dc65d934d8c32b5d8fa5cbc70eefe4)
This commit is contained in:
Gregory Thiemonge 2019-07-15 14:02:26 +02:00
parent 35913d6266
commit 36fad5f7d8
1 changed files with 6 additions and 2 deletions

View File

@ -46,7 +46,9 @@
OS_PASSWORD: "{{ os_password }}"
COMPUTE_API_VERSION: "1.1"
OS_CLOUDNAME: "overcloud"
OS_AUTH_URL: "{{ os_auth_url }}"
OS_AUTH_URL: "{{ os_int_auth_url }}"
OS_INTERFACE: "internal"
OS_ENDPOINT_TYPE: "internal"
OS_IDENTITY_API_VERSION: "{{ os_identity_api_version }}"
OS_IMAGE_API_VERSION: "2"
OS_AUTH_TYPE: "{{ os_auth_type }}"
@ -77,7 +79,9 @@
OS_PASSWORD: "{{ os_password }}"
COMPUTE_API_VERSION: "1.1"
OS_CLOUDNAME: "overcloud"
OS_AUTH_URL: "{{ os_auth_url }}"
OS_AUTH_URL: "{{ os_int_auth_url }}"
OS_INTERFACE: "internal"
OS_ENDPOINT_TYPE: "internal"
OS_IDENTITY_API_VERSION: "{{ os_identity_api_version }}"
OS_IMAGE_API_VERSION: "2"
OS_AUTH_TYPE: "{{ os_auth_type }}"