Revert "Fix vim endpoint issue when https is enabled in DC"

This reverts commit ee095297f750d400d5013d2a6c8f9f7980b321c1.

Reason for revert: There was a side effect on environments 
after upgrades that caused the creation of wrongly configured
endpoints. In this scenario, no HTTPS endpoint would be 
created for Vim on SystemController, which is worse than 
previous behavior.

Depends-on: https://review.opendev.org/c/starlingx/config/+/867028

Change-Id: I1da34f647bbc403280f8d2d771b9fb27b39b7357
Signed-off-by: Marcelo de Castro Loebens <Marcelo.DeCastroLoebens@windriver.com>
This commit is contained in:
Marcelo de Castro Loebens 2022-12-09 17:57:26 +00:00
parent ee095297f7
commit cf9ba345df

View File

@ -49,8 +49,6 @@ class dcorch::keystone::auth (
$patching_proxy_admin_url = 'http://127.0.0.1:25491',
$nfv_proxy_public_url = 'http://127.0.0.1:4545',
$nfv_proxy_admin_url = 'http://127.0.0.1:4545',
$nfv_proxy_internal_url = 'http://127.0.0.1:4545',
) {
if $::platform::params::distributed_cloud_role =='systemcontroller' {
keystone::resource::service_identity { 'dcorch':
@ -104,9 +102,7 @@ class dcorch::keystone::auth (
name => 'vim',
type => 'nfv',
region => $region,
public_url => $nfv_proxy_public_url,
admin_url => $nfv_proxy_admin_url,
internal_url => $nfv_proxy_internal_url
public_url => $nfv_proxy_public_url
}
}
}