aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/steps/instantiate
diff options
context:
space:
mode:
authorMichal Jagiello <michal.jagiello@t-mobile.pl>2023-03-10 14:20:39 +0000
committerMichal Jagiello <michal.jagiello@t-mobile.pl>2023-03-10 14:20:39 +0000
commitef50809c847aca4a198c89fb846eb44046036032 (patch)
treecca1112104f2a0da884ef680642d69790a7e8cdb /src/onaptests/steps/instantiate
parent42c67f92e33984f5f4f7105a22e62febc096d9f3 (diff)
Bump version of onapsdk and use k8s plugin (not via msb)
The newest version of onapsdk fix some bugs but most important it uses k8s plugin API and not MSB (which is deprecated) Issue-ID: OOM-3117 Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl> Change-Id: I56d43dff41b0762b983e59d9f364b3c8c8226537
Diffstat (limited to 'src/onaptests/steps/instantiate')
-rw-r--r--src/onaptests/steps/instantiate/k8s_profile_create.py2
-rw-r--r--src/onaptests/steps/instantiate/msb_k8s.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/onaptests/steps/instantiate/k8s_profile_create.py b/src/onaptests/steps/instantiate/k8s_profile_create.py
index a5c8552..f0ad61b 100644
--- a/src/onaptests/steps/instantiate/k8s_profile_create.py
+++ b/src/onaptests/steps/instantiate/k8s_profile_create.py
@@ -5,7 +5,7 @@ from yaml import load, SafeLoader
from onapsdk.aai.business import Customer, ServiceInstance, ServiceSubscription
from onapsdk.configuration import settings
from onapsdk.exceptions import APIError, ResourceNotFound
-from onapsdk.msb.k8s import Definition
+from onapsdk.k8s import Definition
from onapsdk.so.instantiation import InstantiationParameter
import onaptests.utils.exceptions as onap_test_exceptions
diff --git a/src/onaptests/steps/instantiate/msb_k8s.py b/src/onaptests/steps/instantiate/msb_k8s.py
index 8f9ff2f..724549c 100644
--- a/src/onaptests/steps/instantiate/msb_k8s.py
+++ b/src/onaptests/steps/instantiate/msb_k8s.py
@@ -1,6 +1,6 @@
"""MSB k8s instantiation module."""
from onapsdk.configuration import settings
-from onapsdk.msb.k8s import Instance
+from onapsdk.k8s import Instance
from onaptests.steps.base import BaseStep
from onaptests.steps.onboard.msb_k8s import CreateProfileStep