From 243f80b8b9c42f2b1d15101a9cfcbcd28e68ea1b Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Mon, 7 Mar 2022 22:06:18 +0900 Subject: [PATCH] Octavia: Add missing region_name parameters The region_name parameter is required when Keystone stores information for multiple region_name. Although multi-domain is not yet supported by TripleO, the parameter is set globally. Change-Id: I40e6f811a47a60c6e096508ed743180dfe3be246 --- deployment/octavia/octavia-base.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deployment/octavia/octavia-base.yaml b/deployment/octavia/octavia-base.yaml index 95e9ecb2d7..1297992b6c 100644 --- a/deployment/octavia/octavia-base.yaml +++ b/deployment/octavia/octavia-base.yaml @@ -260,9 +260,13 @@ outputs: octavia::service_auth::user_domain_name: 'Default' octavia::service_auth::region_name: {get_param: KeystoneRegion} octavia::nova::endpoint_type: 'internalURL' + octavia::nova::region_name: {get_param: KeystoneRegion} octavia::neutron::endpoint_type: 'internalURL' + octavia::neutron::region_name: {get_param: KeystoneRegion} octavia::glance::endpoint_type: 'internalURL' + octavia::glance::region_name: {get_param: KeystoneRegion} octavia::cinder::endpoint_type: 'internalURL' + octavia::cinder::region_name: {get_param: KeystoneRegion} octavia::certificates::endpoint_type: 'internalURL' octavia::certificates::ca_certificate: {get_param: OctaviaCaCertFile} octavia::certificates::ca_private_key: {get_param: OctaviaCaKeyFile}