summaryrefslogtreecommitdiffstats
path: root/src/k8splugin/internal/rb
diff options
context:
space:
mode:
Diffstat (limited to 'src/k8splugin/internal/rb')
-rw-r--r--src/k8splugin/internal/rb/config_template.go2
-rw-r--r--src/k8splugin/internal/rb/definition.go2
-rw-r--r--src/k8splugin/internal/rb/definition_test.go2
-rw-r--r--src/k8splugin/internal/rb/profile.go4
-rw-r--r--src/k8splugin/internal/rb/profile_test.go2
5 files changed, 6 insertions, 6 deletions
diff --git a/src/k8splugin/internal/rb/config_template.go b/src/k8splugin/internal/rb/config_template.go
index cdb1b907..cf45a6f2 100644
--- a/src/k8splugin/internal/rb/config_template.go
+++ b/src/k8splugin/internal/rb/config_template.go
@@ -20,7 +20,7 @@ import (
"bytes"
"encoding/json"
"io/ioutil"
- "k8splugin/internal/db"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/db"
"os"
"path/filepath"
diff --git a/src/k8splugin/internal/rb/definition.go b/src/k8splugin/internal/rb/definition.go
index bae8df0c..476e40ee 100644
--- a/src/k8splugin/internal/rb/definition.go
+++ b/src/k8splugin/internal/rb/definition.go
@@ -25,7 +25,7 @@ import (
"os"
"path/filepath"
- "k8splugin/internal/db"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/db"
pkgerrors "github.com/pkg/errors"
)
diff --git a/src/k8splugin/internal/rb/definition_test.go b/src/k8splugin/internal/rb/definition_test.go
index a1ad0eae..054da2cd 100644
--- a/src/k8splugin/internal/rb/definition_test.go
+++ b/src/k8splugin/internal/rb/definition_test.go
@@ -18,7 +18,7 @@ package rb
import (
"bytes"
- "k8splugin/internal/db"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/db"
"reflect"
"sort"
"strings"
diff --git a/src/k8splugin/internal/rb/profile.go b/src/k8splugin/internal/rb/profile.go
index 7d3902f2..37e9aba8 100644
--- a/src/k8splugin/internal/rb/profile.go
+++ b/src/k8splugin/internal/rb/profile.go
@@ -22,8 +22,8 @@ import (
"encoding/json"
"path/filepath"
- "k8splugin/internal/db"
- "k8splugin/internal/helm"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/db"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/helm"
pkgerrors "github.com/pkg/errors"
)
diff --git a/src/k8splugin/internal/rb/profile_test.go b/src/k8splugin/internal/rb/profile_test.go
index f99471eb..29efb506 100644
--- a/src/k8splugin/internal/rb/profile_test.go
+++ b/src/k8splugin/internal/rb/profile_test.go
@@ -18,7 +18,7 @@ package rb
import (
"bytes"
- "k8splugin/internal/db"
+ "github.com/onap/multicloud-k8s/src/k8splugin/internal/db"
"reflect"
"strings"
"testing"