From d57cfcc83107549aea25b98b9bb469983d3525e5 Mon Sep 17 00:00:00 2001
From: gifrerenom <lluis.gifre@cttc.es>
Date: Fri, 15 Sep 2023 09:29:56 +0000
Subject: [PATCH] Manifests:

- Deactivated DEBUG in Context, Device, DLT Connector, InterDomain, PathComp FrontEnd, Service, Slice, WebUI, and Mock BlockChain components
- Deactivated TopologyAbstractor in InterDomain component
---
 manifests/contextservice.yaml     | 2 +-
 manifests/deviceservice.yaml      | 2 +-
 manifests/dltservice.yaml         | 2 +-
 manifests/interdomainservice.yaml | 4 ++--
 manifests/mock_blockchain.yaml    | 2 +-
 manifests/pathcompservice.yaml    | 2 +-
 manifests/serviceservice.yaml     | 2 +-
 manifests/sliceservice.yaml       | 2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/manifests/contextservice.yaml b/manifests/contextservice.yaml
index e0e26cb9f..96735bf5f 100644
--- a/manifests/contextservice.yaml
+++ b/manifests/contextservice.yaml
@@ -40,7 +40,7 @@ spec:
         - name: MB_BACKEND
           value: "nats"
         - name: LOG_LEVEL
-          value: "DEBUG"
+          value: "INFO"
         envFrom:
         - secretRef:
             name: crdb-data
diff --git a/manifests/deviceservice.yaml b/manifests/deviceservice.yaml
index 7f7885daf..77e421f29 100644
--- a/manifests/deviceservice.yaml
+++ b/manifests/deviceservice.yaml
@@ -39,7 +39,7 @@ spec:
         - containerPort: 9192
         env:
         - name: LOG_LEVEL
-          value: "DEBUG"
+          value: "INFO"
         startupProbe:
           exec:
             command: ["/bin/grpc_health_probe", "-addr=:2020"]
diff --git a/manifests/dltservice.yaml b/manifests/dltservice.yaml
index 8e5b1e4e5..5ec2376e1 100644
--- a/manifests/dltservice.yaml
+++ b/manifests/dltservice.yaml
@@ -35,7 +35,7 @@ spec:
         - containerPort: 9192
         env:
         - name: LOG_LEVEL
-          value: "DEBUG"
+          value: "INFO"
         ## For debug purposes. Comment out DLT_GATEWAY_HOST and DLT_GATEWAY_PORT to use normal DLT Gateway component.
         - name: DLT_GATEWAY_HOST
           value: "mock-blockchain.tfs-bchain.svc.cluster.local"
diff --git a/manifests/interdomainservice.yaml b/manifests/interdomainservice.yaml
index 8ecf3cd65..146cedb0d 100644
--- a/manifests/interdomainservice.yaml
+++ b/manifests/interdomainservice.yaml
@@ -35,9 +35,9 @@ spec:
         - containerPort: 9192
         env:
         - name: LOG_LEVEL
-          value: "DEBUG"
+          value: "INFO"
         - name: TOPOLOGY_ABSTRACTOR
-          value: "ENABLE"
+          value: "DISABLE"
         readinessProbe:
           exec:
             command: ["/bin/grpc_health_probe", "-addr=:10010"]
diff --git a/manifests/mock_blockchain.yaml b/manifests/mock_blockchain.yaml
index 779c80da0..14cff5e71 100644
--- a/manifests/mock_blockchain.yaml
+++ b/manifests/mock_blockchain.yaml
@@ -34,7 +34,7 @@ spec:
         - containerPort: 50051
         env:
         - name: LOG_LEVEL
-          value: "DEBUG"
+          value: "INFO"
         readinessProbe:
           exec:
             command: ["/bin/grpc_health_probe", "-addr=:50051"]
diff --git a/manifests/pathcompservice.yaml b/manifests/pathcompservice.yaml
index 54ca91902..c85922d96 100644
--- a/manifests/pathcompservice.yaml
+++ b/manifests/pathcompservice.yaml
@@ -36,7 +36,7 @@ spec:
         - containerPort: 9192
         env:
         - name: LOG_LEVEL
-          value: "DEBUG"
+          value: "INFO"
         readinessProbe:
           exec:
             command: ["/bin/grpc_health_probe", "-addr=:10020"]
diff --git a/manifests/serviceservice.yaml b/manifests/serviceservice.yaml
index 3865fd6c0..7d7bdaa4e 100644
--- a/manifests/serviceservice.yaml
+++ b/manifests/serviceservice.yaml
@@ -36,7 +36,7 @@ spec:
         - containerPort: 9192
         env:
         - name: LOG_LEVEL
-          value: "DEBUG"
+          value: "INFO"
         readinessProbe:
           exec:
             command: ["/bin/grpc_health_probe", "-addr=:3030"]
diff --git a/manifests/sliceservice.yaml b/manifests/sliceservice.yaml
index 61f5b1d21..e7e5c1604 100644
--- a/manifests/sliceservice.yaml
+++ b/manifests/sliceservice.yaml
@@ -36,7 +36,7 @@ spec:
         - containerPort: 9192
         env:
         - name: LOG_LEVEL
-          value: "DEBUG"
+          value: "INFO"
         - name: SLICE_GROUPING
           value: "DISABLE"
         envFrom:
-- 
GitLab