diff options
Diffstat (limited to 'operations/a1-pe-sim-packages/resources/oran-sim-cba')
4 files changed, 68 insertions, 0 deletions
diff --git a/operations/a1-pe-sim-packages/resources/oran-sim-cba/Definitions/data_types.json b/operations/a1-pe-sim-packages/resources/oran-sim-cba/Definitions/data_types.json index 8e48f70..4bff88f 100644 --- a/operations/a1-pe-sim-packages/resources/oran-sim-cba/Definitions/data_types.json +++ b/operations/a1-pe-sim-packages/resources/oran-sim-cba/Definitions/data_types.json @@ -11,6 +11,13 @@ "vnf-id": { "type": "string" }, + "ftp-host": { + "type": "string" + }, + "ftp-port": { + "type": "string", + "default": "32022" + }, "cells-payload": { "type": "string", "default": "" diff --git a/operations/a1-pe-sim-packages/resources/oran-sim-cba/Definitions/resources_definition_types.json b/operations/a1-pe-sim-packages/resources/oran-sim-cba/Definitions/resources_definition_types.json index f5fb852..d8b5733 100644 --- a/operations/a1-pe-sim-packages/resources/oran-sim-cba/Definitions/resources_definition_types.json +++ b/operations/a1-pe-sim-packages/resources/oran-sim-cba/Definitions/resources_definition_types.json @@ -73,6 +73,44 @@ } } }, + "ftp-host": { + "tags": "oran, a1pesim", + "name": "ftp-host", + "property": { + "description": "Host address of the FTP server", + "type": "string" + }, + "group": "default", + "updated-by": "Krystian Kedron <k.kedron@partner.samsung.com>", + "sources": { + "input": { + "type": "source-input" + }, + "default": { + "type": "source-default", + "properties": {} + } + } + }, + "ftp-port": { + "tags": "oran, a1pesim", + "name": "ftp-port", + "property": { + "description": "Port value of the FTP server", + "type": "string" + }, + "group": "default", + "updated-by": "Krystian Kedron <k.kedron@partner.samsung.com>", + "sources": { + "input": { + "type": "source-input" + }, + "default": { + "type": "source-default", + "properties": {} + } + } + }, "oran_name": { "tags": "oran_name", "name": "oran_name", diff --git a/operations/a1-pe-sim-packages/resources/oran-sim-cba/Templates/ves-mapping.json b/operations/a1-pe-sim-packages/resources/oran-sim-cba/Templates/ves-mapping.json index 423617d..62792b4 100644 --- a/operations/a1-pe-sim-packages/resources/oran-sim-cba/Templates/ves-mapping.json +++ b/operations/a1-pe-sim-packages/resources/oran-sim-cba/Templates/ves-mapping.json @@ -75,6 +75,27 @@ "dependencies": [] }, { + "name": "ftp-host", + "input-param": true, + "property": { + "type": "string" + }, + "dictionary-name": "ftp-host", + "dictionary-source": "input", + "dependencies": [] + }, + { + "name": "ftp-port", + "input-param": true, + "property": { + "type": "string", + "default": "32022" + }, + "dictionary-name": "ftp-port", + "dictionary-source": "default", + "dependencies": [] + }, + { "name": "rep-period", "input-param": true, "property": { diff --git a/operations/a1-pe-sim-packages/resources/oran-sim-cba/Templates/ves-template.vtl b/operations/a1-pe-sim-packages/resources/oran-sim-cba/Templates/ves-template.vtl index 8466e65..e888244 100644 --- a/operations/a1-pe-sim-packages/resources/oran-sim-cba/Templates/ves-template.vtl +++ b/operations/a1-pe-sim-packages/resources/oran-sim-cba/Templates/ves-template.vtl @@ -5,4 +5,6 @@ vesHost=$externalNodeIp vesPort=$ves-port vesPassword=$ves-user vesUser=$ves-password +ftpHost=$ftp-host +ftpPort=$ftp-port repPeriod=$rep-period |