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/669195/

Closes-Bug: #1835171
Change-Id: I242f7bb718b08724da21cafa86d3e8853d0ff453
This commit is contained in:
Gregory Thiemonge 2019-07-15 14:02:26 +02:00
parent 69cab4cd53
commit 6deec581ac
1 changed files with 6 additions and 2 deletions

View File

@ -48,7 +48,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 }}"
@ -79,7 +81,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 }}"