aboutsummaryrefslogtreecommitdiffstats
path: root/src/k8splugin/api
diff options
context:
space:
mode:
authorBin Yang <bin.yang@windriver.com>2019-06-26 04:27:11 +0000
committerGerrit Code Review <gerrit@onap.org>2019-06-26 04:27:11 +0000
commit8445148cf095fcc55a9ada3e2bb0fece7a065089 (patch)
tree72c969cb22fe85d218e8c656568b4ee6d3310d31 /src/k8splugin/api
parent1b17eca7ab6c6fe1d14cc30c16354785b4ed6cb4 (diff)
parentf6219a54a7acaac83f129aa837fa81b494ac3c9a (diff)
Merge "Change the import paths for go get access"
Diffstat (limited to 'src/k8splugin/api')
-rw-r--r--src/k8splugin/api/api.go6
-rw-r--r--src/k8splugin/api/brokerhandler.go4
-rw-r--r--src/k8splugin/api/brokerhandler_test.go4
-rw-r--r--src/k8splugin/api/confighandler.go2
-rw-r--r--src/k8splugin/api/configtemplatehandler.go2
-rw-r--r--src/k8splugin/api/defhandler.go2
-rw-r--r--src/k8splugin/api/defhandler_test.go2
-rw-r--r--src/k8splugin/api/healthcheckhandler.go2
-rw-r--r--src/k8splugin/api/healthcheckhandler_test.go2
-rw-r--r--src/k8splugin/api/instancehandler.go2
-rw-r--r--src/k8splugin/api/instancehandler_test.go4
-rw-r--r--src/k8splugin/api/profilehandler.go2
-rw-r--r--src/k8splugin/api/profilehandler_test.go2
13 files changed, 18 insertions, 18 deletions
diff --git a/src/k8splugin/api/api.go b/src/k8splugin/api/api.go
index 808d6f5b..636b80b4 100644
--- a/src/k8splugin/api/api.go
+++ b/src/k8splugin/api/api.go
@@ -14,9 +14,9 @@ limitations under the License.
package api
import (
- "k8splugin/internal/app"
- "k8splugin/internal/connection"
- "k8splugin/internal/rb"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/app"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/connection"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/rb"
"github.com/gorilla/mux"
)
diff --git a/src/k8splugin/api/brokerhandler.go b/src/k8splugin/api/brokerhandler.go
index c0564ee4..669b539f 100644
--- a/src/k8splugin/api/brokerhandler.go
+++ b/src/k8splugin/api/brokerhandler.go
@@ -19,8 +19,8 @@ import (
"log"
"net/http"
- "k8splugin/internal/app"
- "k8splugin/internal/helm"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/app"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/helm"
"github.com/gorilla/mux"
)
diff --git a/src/k8splugin/api/brokerhandler_test.go b/src/k8splugin/api/brokerhandler_test.go
index 15b7bd73..f93ce5ff 100644
--- a/src/k8splugin/api/brokerhandler_test.go
+++ b/src/k8splugin/api/brokerhandler_test.go
@@ -23,8 +23,8 @@ import (
"reflect"
"testing"
- "k8splugin/internal/app"
- "k8splugin/internal/helm"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/app"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/helm"
pkgerrors "github.com/pkg/errors"
"k8s.io/apimachinery/pkg/runtime/schema"
diff --git a/src/k8splugin/api/confighandler.go b/src/k8splugin/api/confighandler.go
index 9bd9db83..c9af2893 100644
--- a/src/k8splugin/api/confighandler.go
+++ b/src/k8splugin/api/confighandler.go
@@ -20,7 +20,7 @@ import (
"encoding/json"
"net/http"
- "k8splugin/internal/app"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/app"
"github.com/gorilla/mux"
)
diff --git a/src/k8splugin/api/configtemplatehandler.go b/src/k8splugin/api/configtemplatehandler.go
index a91165cb..641e4206 100644
--- a/src/k8splugin/api/configtemplatehandler.go
+++ b/src/k8splugin/api/configtemplatehandler.go
@@ -20,7 +20,7 @@ import (
"encoding/json"
"io"
"io/ioutil"
- "k8splugin/internal/rb"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/rb"
"net/http"
"github.com/gorilla/mux"
diff --git a/src/k8splugin/api/defhandler.go b/src/k8splugin/api/defhandler.go
index 1aa00413..c1110a97 100644
--- a/src/k8splugin/api/defhandler.go
+++ b/src/k8splugin/api/defhandler.go
@@ -20,7 +20,7 @@ import (
"encoding/json"
"io"
"io/ioutil"
- "k8splugin/internal/rb"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/rb"
"net/http"
"github.com/gorilla/mux"
diff --git a/src/k8splugin/api/defhandler_test.go b/src/k8splugin/api/defhandler_test.go
index 321eb460..912f96dd 100644
--- a/src/k8splugin/api/defhandler_test.go
+++ b/src/k8splugin/api/defhandler_test.go
@@ -20,7 +20,7 @@ import (
"bytes"
"encoding/json"
"io"
- "k8splugin/internal/rb"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/rb"
"net/http"
"net/http/httptest"
"reflect"
diff --git a/src/k8splugin/api/healthcheckhandler.go b/src/k8splugin/api/healthcheckhandler.go
index 79b7b7ef..896c6df0 100644
--- a/src/k8splugin/api/healthcheckhandler.go
+++ b/src/k8splugin/api/healthcheckhandler.go
@@ -19,7 +19,7 @@ package api
import (
"net/http"
- "k8splugin/internal/db"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/db"
)
// healthCheckHandler executes a db read to return health of k8splugin
diff --git a/src/k8splugin/api/healthcheckhandler_test.go b/src/k8splugin/api/healthcheckhandler_test.go
index c2e1888e..d96bb3cd 100644
--- a/src/k8splugin/api/healthcheckhandler_test.go
+++ b/src/k8splugin/api/healthcheckhandler_test.go
@@ -21,7 +21,7 @@ import (
"net/http/httptest"
"testing"
- "k8splugin/internal/db"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/db"
pkgerrors "github.com/pkg/errors"
)
diff --git a/src/k8splugin/api/instancehandler.go b/src/k8splugin/api/instancehandler.go
index 4fc3cfc8..42f3b212 100644
--- a/src/k8splugin/api/instancehandler.go
+++ b/src/k8splugin/api/instancehandler.go
@@ -19,7 +19,7 @@ import (
"io"
"net/http"
- "k8splugin/internal/app"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/app"
"github.com/gorilla/mux"
pkgerrors "github.com/pkg/errors"
diff --git a/src/k8splugin/api/instancehandler_test.go b/src/k8splugin/api/instancehandler_test.go
index dac7db00..3fc0202d 100644
--- a/src/k8splugin/api/instancehandler_test.go
+++ b/src/k8splugin/api/instancehandler_test.go
@@ -23,8 +23,8 @@ import (
"reflect"
"testing"
- "k8splugin/internal/app"
- "k8splugin/internal/helm"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/app"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/helm"
"github.com/gorilla/mux"
pkgerrors "github.com/pkg/errors"
diff --git a/src/k8splugin/api/profilehandler.go b/src/k8splugin/api/profilehandler.go
index 362289ff..adb9249b 100644
--- a/src/k8splugin/api/profilehandler.go
+++ b/src/k8splugin/api/profilehandler.go
@@ -20,7 +20,7 @@ import (
"encoding/json"
"io"
"io/ioutil"
- "k8splugin/internal/rb"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/rb"
"net/http"
"github.com/gorilla/mux"
diff --git a/src/k8splugin/api/profilehandler_test.go b/src/k8splugin/api/profilehandler_test.go
index 2473fea5..eb65827a 100644
--- a/src/k8splugin/api/profilehandler_test.go
+++ b/src/k8splugin/api/profilehandler_test.go
@@ -20,7 +20,7 @@ import (
"bytes"
"encoding/json"
"io"
- "k8splugin/internal/rb"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/rb"
"net/http"
"net/http/httptest"
"reflect"