From 740fe8fb45e788bbb1338cde36d655ccba361682 Mon Sep 17 00:00:00 2001 From: Martin Skorupski Date: Tue, 10 Oct 2023 16:01:12 +0200 Subject: [PATCH] Create valid configuration file - config.json added as specified in configuration.schema.json Issue-ID: OAM-352 Change-Id: I5f8530338db3a61d8769477fad8b6e2c080e9b17 Signed-off-by: Martin Skorupski --- code/network-generator/config.json | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 code/network-generator/config.json diff --git a/code/network-generator/config.json b/code/network-generator/config.json new file mode 100644 index 0000000..c8f86cd --- /dev/null +++ b/code/network-generator/config.json @@ -0,0 +1,38 @@ +{ + "network": { + "name": "o-ran-topology", + "pattern": { + "tower": { + "representation": "hexagon", + "cellAngle": 120 + }, + "smo": { + "five-g-core-count": 1, + "near-rt-ric-spiral-radius": 1, + "o-could-resource-pool-count": 1 + }, + "near-rt-ric": { + "o-ran-cu-spiral-radius": 1 + }, + "o-ran-cu": { + "tower-spiral-radius": 2 + }, + "o-ran-du": { + "fronthaul-gateway-count": 0, + "o-ran-ru-count": 1 + }, + "o-ran-ru": { + "nr-cell-du-count": 1 + }, + "nr-cell-du": { + "sector-count": 1 + } + } + }, + "output-folder": "output", + "generation-tasks": { + "topology": true, + "svg": true, + "kml": true + } +} \ No newline at end of file -- 2.16.6