Commit 7d529b88 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Pre-merge code cleanup

parent 789e2ed1
Loading
Loading
Loading
Loading

ELETE

deleted100644 → 0
+0 −7
Original line number Diff line number Diff line
HTTP/1.1 200 OK
Date: Wed, 03 Sep 2025 11:33:07 GMT
Content-Type: application/json
Content-Length: 150
Connection: keep-alive
Set-Cookie: tfs-nbi-session=c5057ef07ba90ead264a239e780840d8|71c72e91446cc44f7d2677dc338327bf; Expires=Wed, 03-Sep-25 12:33:07 GMT; Path=/socket.io; HttpOnly
+5 −5
Original line number Diff line number Diff line
@@ -36,9 +36,9 @@ spec:
            - containerPort: 9192
          env:
            - name: OSM_ADDRESS
              value: "10.1.7.199:9999"
              value: "127.0.0.1"
            - name: LOG_LEVEL
              value: "DEBUG"
              value: "INFO"
          readinessProbe:
            exec:
              command: ["/bin/grpc_health_probe", "-addr=:30210"]
@@ -47,11 +47,11 @@ spec:
              command: ["/bin/grpc_health_probe", "-addr=:30210"]
          resources:
            requests:
              cpu: 150m
              cpu: 250m
              memory: 128Mi
            limits:
              cpu: 500m
              memory: 512Mi
              cpu: 1000m
              memory: 1024Mi
---
apiVersion: v1
kind: Service
+5 −2
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
export TFS_REGISTRY_IMAGES="http://localhost:32000/tfs/"

# Set the list of components, separated by spaces, you want to build images for, and deploy.
export TFS_COMPONENTS="context device pathcomp service slice nbi webui osm_client"
export TFS_COMPONENTS="context device pathcomp service slice nbi webui"

# Uncomment to activate Monitoring (old)
#export TFS_COMPONENTS="${TFS_COMPONENTS} monitoring"
@@ -68,6 +68,9 @@ export TFS_COMPONENTS="context device pathcomp service slice nbi webui osm_clien
# Uncomment to activate VNT Manager
#export TFS_COMPONENTS="${TFS_COMPONENTS} vnt_manager"

# Uncomment to activate OSM Client
#export TFS_COMPONENTS="${TFS_COMPONENTS} osm_client"

# Uncomment to activate DLT and Interdomain
#export TFS_COMPONENTS="${TFS_COMPONENTS} interdomain dlt"
#if [[ "$TFS_COMPONENTS" == *"dlt"* ]]; then
@@ -134,7 +137,7 @@ export CRDB_PASSWORD="tfs123"
export CRDB_DEPLOY_MODE="single"

# Disable flag for dropping database, if it exists.
export CRDB_DROP_DATABASE_IF_EXISTS="YES"
export CRDB_DROP_DATABASE_IF_EXISTS=""

# Disable flag for re-deploying CockroachDB from scratch.
export CRDB_REDEPLOY=""

newosm.pcap

deleted100644 → 0
−13.9 MiB

File deleted.

+0 −2
Original line number Diff line number Diff line
@@ -47,7 +47,6 @@ from .vntm_recommend import register_vntm_recommend
from .well_known_meta import register_well_known



LOG_LEVEL = get_log_level()
logging.basicConfig(
    level=LOG_LEVEL,
@@ -101,7 +100,6 @@ register_qkd_app (nbi_app)
register_vntm_recommend  (nbi_app)
register_camara_qod      (nbi_app)
register_osm_api         (nbi_app)

LOGGER.info('All connectors registered')

nbi_app.dump_configuration()
Loading