From bc0754b45540c56eeb9fc2aa2649a030136d0742 Mon Sep 17 00:00:00 2001 From: deepikasatheesh Date: Tue, 10 Nov 2020 04:27:55 -0800 Subject: Read subnetCapabilities configuration file from SO pod Issue-ID: SO-3372 Signed-off-by: deepikasatheesh Change-Id: I1055ec23b572d4f8b19ba326615248153c895227 --- .../src/main/resources/application.yaml | 4 ++++ .../src/main/resources/subnetCapability.json | 25 ---------------------- 2 files changed, 4 insertions(+), 25 deletions(-) delete mode 100644 mso-api-handlers/mso-api-handler-infra/src/main/resources/subnetCapability.json (limited to 'mso-api-handlers/mso-api-handler-infra/src/main/resources') diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/resources/application.yaml b/mso-api-handlers/mso-api-handler-infra/src/main/resources/application.yaml index b46690f2a7..6064f73e23 100644 --- a/mso-api-handlers/mso-api-handler-infra/src/main/resources/application.yaml +++ b/mso-api-handlers/mso-api-handler-infra/src/main/resources/application.yaml @@ -83,3 +83,7 @@ org: adapters: network: encryptionKey: aa3871669d893c7fb8abbcda31b88b4f + +subnetCapability: + config: + file: /app/subnetCapability.json diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/resources/subnetCapability.json b/mso-api-handlers/mso-api-handler-infra/src/main/resources/subnetCapability.json deleted file mode 100644 index 0d5acef64a..0000000000 --- a/mso-api-handlers/mso-api-handler-infra/src/main/resources/subnetCapability.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "AN": { - "latency": "5", - "maxNumberofUEs": "100", - "maxThroughput": "150", - "terminalDensity": "50" - }, - "CN": { - "latency": "10", - "maxThroughput": "50", - "maxNumberofConns": "100" - }, - "TN_FH": { - "latency": "10", - "maxThroughput": "100" - }, - "TN_MH": { - "latency": "5", - "maxThroughput": "50" - }, - "TN_BH": { - "latency": "10", - "maxThroughput": "100" - } -} -- cgit