From 9af9b4d620afa44a65c41c6d17875420d47f3510 Mon Sep 17 00:00:00 2001 From: Lukasz Rajewski Date: Mon, 17 Jan 2022 18:06:25 +0100 Subject: [TEST] Fixed CBA and its publish for Basic CNF macro - Fixed CBA for Basic CNF macro after bad git push of binary file. - Added nodeport exposure for cbapublish step when CBA file is already enriched Issue-ID: TEST-376 Signed-off-by: Lukasz Rajewski Change-Id: Icf4bbf94691453a5421467dc5c8ec876a0fa191a --- .gitattributes | 1 + src/onaptests/steps/onboard/cds.py | 2 ++ .../templates/artifacts/basic_cnf_cba_enriched.zip | Bin 60824 -> 63632 bytes 3 files changed, 3 insertions(+) diff --git a/.gitattributes b/.gitattributes index 2eb6749..1fd8578 100644 --- a/.gitattributes +++ b/.gitattributes @@ -3,3 +3,4 @@ *.jpg binary *.xlsx binary *.csar -text +*.zip binary diff --git a/src/onaptests/steps/onboard/cds.py b/src/onaptests/steps/onboard/cds.py index d6645ef..13e6203 100644 --- a/src/onaptests/steps/onboard/cds.py +++ b/src/onaptests/steps/onboard/cds.py @@ -217,6 +217,8 @@ 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)) + else: + self.add_step(ExposeCDSBlueprintprocessorNodePortStep(cleanup=cleanup)) @property def description(self) -> str: diff --git a/src/onaptests/templates/artifacts/basic_cnf_cba_enriched.zip b/src/onaptests/templates/artifacts/basic_cnf_cba_enriched.zip index 825160c..cadb52f 100644 Binary files a/src/onaptests/templates/artifacts/basic_cnf_cba_enriched.zip and b/src/onaptests/templates/artifacts/basic_cnf_cba_enriched.zip differ -- cgit 1.2.3-korg