aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBin Yang <bin.yang@windriver.com>2019-03-26 09:01:45 +0000
committerGerrit Code Review <gerrit@onap.org>2019-03-26 09:01:45 +0000
commit1ab1af62578c1c2bf7b3b2e56827fe408cabdbb3 (patch)
treeb560bf324f2a8978285249d7b38b240f62b0e65f
parent25682fe21ea85e807490229c2e8c8fd6a5963d25 (diff)
parenta871bc854cbd001bf92040298f3093001b8cf5fd (diff)
Merge "Fix namespace creation"
-rwxr-xr-xkud/tests/plugin.sh2
-rw-r--r--src/k8splugin/internal/app/vnfhelper.go5
2 files changed, 2 insertions, 5 deletions
diff --git a/kud/tests/plugin.sh b/kud/tests/plugin.sh
index 6cf93cef..d632f844 100755
--- a/kud/tests/plugin.sh
+++ b/kud/tests/plugin.sh
@@ -18,7 +18,7 @@ source _functions.sh
base_url="http://localhost:8081"
cloud_region_id="kud"
-namespace="default"
+namespace="testNS"
csar_id="94e414f6-9ca4-11e8-bb6a-52540067263b"
rbd_csar_id="7eb09e38-4363-9942-1234-3beb2e95fd85"
definition_id="9d117af8-30b8-11e9-af94-525400277b3d"
diff --git a/src/k8splugin/internal/app/vnfhelper.go b/src/k8splugin/internal/app/vnfhelper.go
index f7c4596d..5984bbd0 100644
--- a/src/k8splugin/internal/app/vnfhelper.go
+++ b/src/k8splugin/internal/app/vnfhelper.go
@@ -47,11 +47,8 @@ func ensuresNamespace(namespace string, kubeclient kubernetes.Interface) error {
return pkgerrors.Wrap(err, "Error fetching get namespace function")
}
- ns, err := symGetNamespaceFunc.(func(string, string, kubernetes.Interface) (string, error))(
+ ns, _ := symGetNamespaceFunc.(func(string, string, kubernetes.Interface) (string, error))(
namespace, namespace, kubeclient)
- if err != nil {
- return pkgerrors.Wrap(err, "An error ocurred during the get namespace execution")
- }
if ns == "" {
log.Println("Creating " + namespace + " namespace")