RIC-208 - KA Decision: ask K8S to restart E2T instance - comment code of kubernetes
[ric-plt/e2mgr.git] / E2Manager / configuration / configuration.go
index 43beee0..5e4c31e 100644 (file)
@@ -40,7 +40,7 @@ type Configuration struct {
        }
 /*     Kubernetes struct {
                ConfigPath string
-               Namespace  string
+               KubeNamespace  string
        }*/
        NotificationResponseBuffer   int
        BigRedButtonTimeoutSec       int
@@ -118,7 +118,7 @@ func (c *Configuration) populateRoutingManagerConfig(rmConfig *viper.Viper) {
                panic(fmt.Sprintf("#configuration.populateKubernetesConfig - failed to populate Kubernetes configuration: The entry 'kubernetes' not found\n"))
        }
        c.Kubernetes.ConfigPath = rmConfig.GetString("configPath")
-       c.Kubernetes.Namespace = rmConfig.GetString("namespace")
+       c.Kubernetes.KubeNamespace = rmConfig.GetString("kubeNamespace")
 }*/
 
 func (c *Configuration) populateGlobalRicIdConfig(globalRicIdConfig *viper.Viper) {
@@ -133,7 +133,7 @@ func (c *Configuration) String() string {
        return fmt.Sprintf("{logging.logLevel: %s, http.port: %d, rmr: { port: %d, maxMsgSize: %d}, routingManager.baseUrl: %s, "+
                "notificationResponseBuffer: %d, bigRedButtonTimeoutSec: %d, maxRnibConnectionAttempts: %d, "+
                "rnibRetryIntervalMs: %d, keepAliveResponseTimeoutMs: %d, keepAliveDelayMs: %d, e2tInstanceDeletionTimeoutMs: %d, "+
-               "globalRicId: { plmnId: %s, ricNearRtId: %s}}",//, kubernetes: {configPath: %s, namespace: %s}}",
+               "globalRicId: { plmnId: %s, ricNearRtId: %s}",//, kubernetes: {configPath: %s, kubeNamespace: %s}}",
                c.Logging.LogLevel,
                c.Http.Port,
                c.Rmr.Port,
@@ -148,7 +148,7 @@ func (c *Configuration) String() string {
                c.E2TInstanceDeletionTimeoutMs,
                c.GlobalRicId.PlmnId,
                c.GlobalRicId.RicNearRtId,
-       //      c.Kubernetes.ConfigPath,
-               //c.Kubernetes.Namespace,
+/*             c.Kubernetes.ConfigPath,
+               c.Kubernetes.KubeNamespace,*/
        )
 }