Use L4 ports used in OAM firewall from system.yaml

In order to unify implementation with the other platform firewalls,
the hard-coded values are set to 'undef' and will be provided by
sysinv in system.yaml

The test below validates the correct values are present in the OAM
firewall

Test Plan:
[PASS] Install, Lock, Unlock AIO-SX
[PASS] Install, Lock, Unlock AIO-DX (as SystemController)

Story: 2010591
Task: 48255

Depends-On: https://review.opendev.org/c/starlingx/config/+/885585
Change-Id: Idc1f71f7ba762dc76529022acf4145db00686ec2
Signed-off-by: Andre Kantek <andrefernandozanella.kantek@windriver.com>
This commit is contained in:
Andre Kantek 2023-06-08 10:57:05 -03:00
parent 867447b5d7
commit 0ec63a4667
10 changed files with 13 additions and 13 deletions

View File

@ -1,5 +1,5 @@
class openstack::barbican::params (
$api_port = 9311,
$api_port = undef,
$region_name = undef,
$service_name = 'barbican-api',
$service_create = false,

View File

@ -4,7 +4,7 @@ class openstack::keystone::params(
$auth_uri,
$host_url,
$openstack_auth_uri = undef,
$api_port = 5000,
$api_port = undef,
$admin_port = 5000,
$region_name = undef,
$system_controller_region = undef,

View File

@ -26,7 +26,7 @@ class platform::ceph::params(
$rgw_client_name = 'radosgw.gateway',
$rgw_user_name = 'root',
$rgw_frontend_type = 'civetweb',
$rgw_port = 7480,
$rgw_port = undef,
$rgw_log_file = '/var/log/radosgw/radosgw.log',
$rgw_service_domain = undef,
$rgw_service_project = undef,

View File

@ -1,5 +1,5 @@
class platform::dcmanager::params (
$api_port = 8119,
$api_port = undef,
$region_name = undef,
$domain_name = undef,
$domain_admin = undef,

View File

@ -9,11 +9,11 @@ class platform::dcorch::params (
$service_create = false,
$neutron_api_proxy_port = 29696,
$nova_api_proxy_port = 28774,
$sysinv_api_proxy_port = 26385,
$sysinv_api_proxy_port = undef,
$cinder_api_proxy_port = 28776,
$cinder_enable_ports = false,
$patch_api_proxy_port = 25491,
$identity_api_proxy_port = 25000,
$patch_api_proxy_port = undef,
$identity_api_proxy_port = undef,
$sysinv_api_proxy_client_timeout = '600s',
$sysinv_api_proxy_server_timeout = '600s',
) {

View File

@ -6,8 +6,8 @@ class platform::docker::params (
$http_proxy = undef,
$https_proxy = undef,
$no_proxy = undef,
$registry_port = '9001',
$token_port = '9002',
$registry_port = undef,
$token_port = undef,
$k8s_registry = undef,
$gcr_registry = undef,
$quay_registry = undef,

View File

@ -1,5 +1,5 @@
class platform::fm::params (
$api_port = 18002,
$api_port = undef,
$api_host = '127.0.0.1',
$region_name = undef,
$system_name = undef,

View File

@ -1,5 +1,5 @@
class platform::nfv::params (
$api_port = 4545,
$api_port = undef,
$region_name = undef,
$service_create = false,
) { }

View File

@ -1,6 +1,6 @@
class platform::patching::params (
$private_port = 5491,
$public_port = 15491,
$public_port = undef,
$server_timeout = '600s',
$region_name = undef,
$service_create = false,

View File

@ -1,5 +1,5 @@
class platform::sysinv::params (
$api_port = 6385,
$api_port = undef,
$region_name = undef,
$service_create = false,
$fm_catalog_info = 'faultmanagement:fm:internalURL',