From 0e935eede33969dc963fcc063713d3f4866bdf85 Mon Sep 17 00:00:00 2001 From: Michal Jagiello Date: Wed, 18 Oct 2023 15:44:19 +0200 Subject: Make pnf-simulator helm chart configurable PNF simulator couldn't be configured on demand (e.g. image couldn't be changed) That version allows override values and run customized version of pnf-simulator Issue-ID: TEST-404 Signed-off-by: Michal Jagiello Change-Id: Ic18bdaeaa782b61478579056d5ba1a893087d85c --- src/onaptests/steps/instantiate/msb_k8s.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/onaptests/steps') diff --git a/src/onaptests/steps/instantiate/msb_k8s.py b/src/onaptests/steps/instantiate/msb_k8s.py index 9189282..29bc84a 100644 --- a/src/onaptests/steps/instantiate/msb_k8s.py +++ b/src/onaptests/steps/instantiate/msb_k8s.py @@ -36,7 +36,8 @@ class CreateInstanceStep(BaseStep): self.instance = Instance.create(cloud_region_id=settings.CLOUD_REGION_ID, profile_name=settings.MSB_K8S_PROFILE_NAME, rb_name=settings.MSB_K8S_RB_NAME, - rb_version=settings.MSB_K8S_RB_VERSION) + rb_version=settings.MSB_K8S_RB_VERSION, + override_values=settings.MSB_K8S_OVERRIDE_VALUES) @BaseStep.store_state(cleanup=True) def cleanup(self) -> None: -- cgit 1.2.3-korg