diff options
Diffstat (limited to 'src/onaptests/steps')
-rw-r--r-- | src/onaptests/steps/instantiate/msb_k8s.py | 3 |
1 files changed, 2 insertions, 1 deletions
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: |