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 <michal.jagiello@t-mobile.pl>
Change-Id: Ic18bdaeaa782b61478579056d5ba1a893087d85c
 MSB_K8S_PROFILE_ARTIFACT_FILE_PATH = Path(get_resource_location(
                                           "templates/artifacts/profile.tar.gz"))
 MSB_K8S_PROFILE_NAME = f"cds-ms-prof-{str(uuid4())}"
+MSB_K8S_OVERRIDE_VALUES = None
 K8S_VERSION = "1.0"
 K8S_CONFIG = get_resource_location("templates/artifacts/config")
 K8S_ADDITIONAL_RESOURCES_NAMESPACE = "onap-tests"
 
 MSB_K8S_PROFILE_ARTIFACT_FILE_PATH = Path(get_resource_location(
     "templates/artifacts/profile.tar.gz"))
 MSB_K8S_PROFILE_NAME = f"pnf-cnf-profile-{str(uuid4())}"
+MSB_K8S_OVERRIDE_VALUES = None
 K8S_VERSION = "1.0"
 K8S_CONFIG = get_resource_location("templates/artifacts/config")
 K8S_ADDITIONAL_RESOURCES_NAMESPACE = "onap-tests"
 
         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: