Update Kubectl and sdlgo versions

Change-Id: Ia3b9249a9ea480693b18f5781e59e75de3b9d5a3
Signed-off-by: Abukar Mohamed <abukar.mohamed@nokia.com>
diff --git a/pkg/appmgr/appmgr.go b/pkg/appmgr/appmgr.go
index 2bd1d59..26a0453 100755
--- a/pkg/appmgr/appmgr.go
+++ b/pkg/appmgr/appmgr.go
@@ -21,7 +21,7 @@
 
 import (
 	"flag"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/logger"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/logger"
 	"github.com/fsnotify/fsnotify"
 	"github.com/spf13/viper"
 	"log"
@@ -68,5 +68,5 @@
 func Init() {
 	loadConfig()
 	Logger = logger.NewLogger("appmgr")
-	Logger.SetMdc("xm", "0.3.3")
+	Logger.SetMdc("xm", "0.4.1")
 }
diff --git a/pkg/appmgr/types.go b/pkg/appmgr/types.go
index 9b49b25..6000edb 100755
--- a/pkg/appmgr/types.go
+++ b/pkg/appmgr/types.go
@@ -20,7 +20,7 @@
 package appmgr
 
 import (
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/models"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/models"
 )
 
 type ConfigMap struct {
diff --git a/pkg/cm/cm.go b/pkg/cm/cm.go
index fb80276..9ff2876 100755
--- a/pkg/cm/cm.go
+++ b/pkg/cm/cm.go
@@ -33,9 +33,9 @@
 	"github.com/valyala/fastjson"
 	"github.com/xeipuuv/gojsonschema"
 
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/appmgr"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/models"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/util"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/appmgr"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/models"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/util"
 )
 
 type CM struct{}
@@ -311,4 +311,4 @@
 	appmgr.Logger.Info("Config validation successful!")
 
 	return
-}
\ No newline at end of file
+}
diff --git a/pkg/cm/cm_test.go b/pkg/cm/cm_test.go
index 56b2250..01f5bc5 100755
--- a/pkg/cm/cm_test.go
+++ b/pkg/cm/cm_test.go
@@ -26,9 +26,9 @@
 	"reflect"
 	"testing"
 
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/appmgr"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/models"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/util"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/appmgr"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/models"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/util"
 )
 
 var helmSearchOutput = `
diff --git a/pkg/helm/helm.go b/pkg/helm/helm.go
index 886d015..345ea45 100755
--- a/pkg/helm/helm.go
+++ b/pkg/helm/helm.go
@@ -30,10 +30,10 @@
 	"strings"
 	"time"
 
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/appmgr"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/cm"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/models"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/util"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/appmgr"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/cm"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/models"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/util"
 )
 
 type Helm struct {
diff --git a/pkg/helm/helm_test.go b/pkg/helm/helm_test.go
index 2c08afb..27f53a7 100755
--- a/pkg/helm/helm_test.go
+++ b/pkg/helm/helm_test.go
@@ -25,9 +25,9 @@
 	"strconv"
 	"testing"
 
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/appmgr"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/models"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/util"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/appmgr"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/models"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/util"
 )
 
 var helmStatusOutput = `
diff --git a/pkg/restful/restful.go b/pkg/restful/restful.go
index e4c149e..9124ecd 100755
--- a/pkg/restful/restful.go
+++ b/pkg/restful/restful.go
@@ -24,18 +24,18 @@
 	"os"
 	"time"
 
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/models"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/restapi"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/restapi/operations"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/restapi/operations/health"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/restapi/operations/xapp"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/models"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/restapi"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/restapi/operations"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/restapi/operations/health"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/restapi/operations/xapp"
 	"github.com/go-openapi/loads"
 	"github.com/go-openapi/runtime/middleware"
 
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/appmgr"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/cm"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/helm"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/resthooks"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/appmgr"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/cm"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/helm"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/resthooks"
 )
 
 func NewRestful() *Restful {
diff --git a/pkg/restful/types.go b/pkg/restful/types.go
index 189962d..fbbf294 100755
--- a/pkg/restful/types.go
+++ b/pkg/restful/types.go
@@ -22,10 +22,10 @@
 import (
 	"net/http"
 
-	cfgmap "gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/cm"
-	helmer "gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/helm"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/restapi/operations"
-	resthook "gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/resthooks"
+	cfgmap "gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/cm"
+	helmer "gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/helm"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/restapi/operations"
+	resthook "gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/resthooks"
 )
 
 type CmdOptions struct {
diff --git a/pkg/resthooks/resthooks.go b/pkg/resthooks/resthooks.go
index 471eec1..dd3a578 100755
--- a/pkg/resthooks/resthooks.go
+++ b/pkg/resthooks/resthooks.go
@@ -22,14 +22,14 @@
 import (
 	"bytes"
 	"encoding/json"
-	sdl "gerrit.oran-osc.org/r/ric-plt/sdlgo"
+	sdl "gerrit.o-ran-sc.org/r/ric-plt/sdlgo"
 	cmap "github.com/orcaman/concurrent-map"
 	"github.com/segmentio/ksuid"
 	"net/http"
 	"time"
 
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/appmgr"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/models"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/appmgr"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/models"
 )
 
 func NewResthook(restoreData bool) *Resthook {
diff --git a/pkg/resthooks/resthooks_test.go b/pkg/resthooks/resthooks_test.go
index 176fd2d..14f7016 100755
--- a/pkg/resthooks/resthooks_test.go
+++ b/pkg/resthooks/resthooks_test.go
@@ -24,8 +24,8 @@
 	"os"
 	"testing"
 
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/appmgr"
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/models"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/appmgr"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/models"
 )
 
 var rh *Resthook
diff --git a/pkg/resthooks/types.go b/pkg/resthooks/types.go
index e613476..2229abe 100755
--- a/pkg/resthooks/types.go
+++ b/pkg/resthooks/types.go
@@ -20,11 +20,11 @@
 package resthooks
 
 import (
-	sdl "gerrit.oran-osc.org/r/ric-plt/sdlgo"
+	sdl "gerrit.o-ran-sc.org/r/ric-plt/sdlgo"
 	cmap "github.com/orcaman/concurrent-map"
 	"net/http"
 
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/models"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/models"
 )
 
 type SubscriptionInfo struct {
diff --git a/pkg/util/util.go b/pkg/util/util.go
index 8ea4d40..d0f9bc9 100755
--- a/pkg/util/util.go
+++ b/pkg/util/util.go
@@ -28,7 +28,7 @@
 	"strings"
 	"time"
 
-	"gerrit.oran-osc.org/r/ric-plt/appmgr/pkg/appmgr"
+	"gerrit.o-ran-sc.org/r/ric-plt/appmgr/pkg/appmgr"
 )
 
 var execCommand = exec.Command