xapp-frame namespace changes 82/4982/2
authorrangajal <ranjit.angajala@nokia.com>
Tue, 3 Nov 2020 17:35:40 +0000 (20:35 +0300)
committerrangajal <ranjit.angajala@nokia.com>
Wed, 4 Nov 2020 03:23:51 +0000 (06:23 +0300)
Change-Id: I31657cb000b71deec35bd86f5d566911a8325b40
Signed-off-by: rangajal <ranjit.angajala@nokia.com>
pkg/xapp/subscription.go

index 27485dd..4dcf22b 100755 (executable)
@@ -31,6 +31,7 @@ import (
        "io/ioutil"
        "net"
        "net/http"
+       "os"
        "time"
 
        apiclient "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/clientapi"
@@ -66,7 +67,11 @@ type Subscriber struct {
 
 func NewSubscriber(host string, timo int) *Subscriber {
        if host == "" {
-               host = "service-ricplt-submgr-http.ricplt:8088"
+               pltnamespace := os.Getenv("PLT_NAMESPACE")
+               if pltnamespace == "" {
+                       pltnamespace = "ricplt"
+               }
+               host = fmt.Sprintf("service-%s-submgr-http.%s:8088", pltnamespace, pltnamespace)
        }
 
        if timo == 0 {