aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/steps
diff options
context:
space:
mode:
authorPawe? Denst <pawel.denst@external.t-mobile.pl>2023-05-18 07:19:06 +0000
committerPawe? Denst <pawel.denst@external.t-mobile.pl>2023-05-18 07:19:06 +0000
commit4e195b998ba92878aa28b82fb279a10393b4d3db (patch)
tree083c27d4fd07c997d41ad94914eba682661d426f /src/onaptests/steps
parent33b2b348ec495346e946cde6bb9edd2372b47eb4 (diff)
Revert "Configure ONAP Python tests to not expose services"
Changed name of setting value Issue-ID: INT-2234 Change-Id: I22f35a4cdff076862f086cb15d06e3d0101c883a Signed-off-by: pawel.denst <pawel.denst@external.t-mobile.pl>
Diffstat (limited to 'src/onaptests/steps')
-rw-r--r--src/onaptests/steps/onboard/cds.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/onaptests/steps/onboard/cds.py b/src/onaptests/steps/onboard/cds.py
index 0bad0cb..13e6203 100644
--- a/src/onaptests/steps/onboard/cds.py
+++ b/src/onaptests/steps/onboard/cds.py
@@ -13,8 +13,7 @@ from onapsdk.cds.blueprint_processor import Blueprintprocessor
from onapsdk.configuration import settings
import urllib3
-from onaptests.steps.base import BaseStep
-
+from ..base import BaseStep
from onaptests.utils.exceptions import OnapTestException
@@ -69,7 +68,6 @@ class ExposeCDSBlueprintprocessorNodePortStep(CDSBaseStep):
Use settings values:
- K8S_CONFIG,
- K8S_ONAP_NAMESPACE.
- - EXPOSE_SERVICES_NODE_PORTS
"""
super().execute()
@@ -133,8 +131,7 @@ class BootstrapBlueprintprocessor(CDSBaseStep):
- ExposeCDSBlueprintprocessorNodePortStep.
"""
super().__init__(cleanup=cleanup)
- if settings.EXPOSE_SERVICES_NODE_PORTS:
- self.add_step(ExposeCDSBlueprintprocessorNodePortStep(cleanup=cleanup))
+ self.add_step(ExposeCDSBlueprintprocessorNodePortStep(cleanup=cleanup))
@property
def description(self) -> str:
@@ -220,7 +217,7 @@ class CbaPublishStep(CDSBaseStep):
"""Let's skip enrichment if enriched CBA is already present"""
if Path.is_file(settings.CDS_CBA_UNENRICHED):
self.add_step(CbaEnrichStep(cleanup=cleanup))
- elif settings.EXPOSE_SERVICES_NODE_PORTS:
+ else:
self.add_step(ExposeCDSBlueprintprocessorNodePortStep(cleanup=cleanup))
@property