diff options
author | sebdet <sebastien.determe@intl.att.com> | 2020-11-09 09:23:31 +0100 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2020-11-09 09:23:31 +0100 |
commit | 87f9a552666526765733c14884816ccdef734bc1 (patch) | |
tree | 1d82379b3c3a27a47288bc5eda093ea8f4235fd3 /src/onaptests/steps/onboard/clamp.py | |
parent | 882e2b34db0ea53de3195303267c17d8809fca15 (diff) |
Update the TCA yaml i CLAMP E2E tests
The TCA microservice yaml must be updated for Guilin, it uses a new policy
Issue-ID: CLAMP-977
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Change-Id: I9dd857906487d9f5b0d25a84add3836cbd4fea42
Diffstat (limited to 'src/onaptests/steps/onboard/clamp.py')
-rw-r--r-- | src/onaptests/steps/onboard/clamp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/onaptests/steps/onboard/clamp.py b/src/onaptests/steps/onboard/clamp.py index 8f6b6bf..f864463 100644 --- a/src/onaptests/steps/onboard/clamp.py +++ b/src/onaptests/steps/onboard/clamp.py @@ -78,12 +78,12 @@ class OnboardClampStep(YamlTemplateBaseStep): # we add the artifact to the first VNF self._logger.info("Try to add blueprint to %s", vf.name) - payload_file = open(settings.CONFIGURATION_PATH + 'clampnode.yaml', 'rb') + payload_file = open(settings.CONFIGURATION_PATH + 'tca-microservice.yaml', 'rb') data = payload_file.read() self._logger.info("DCAE INVENTORY BLUEPRINT file retrieved") service.add_artifact_to_vf(vnf_name=vf.name, artifact_type="DCAE_INVENTORY_BLUEPRINT", - artifact_name="clampnode.yaml", + artifact_name="tca-microservice.yaml", artifact=data) payload_file.close() service.checkin() |