Blueprint for configuring a PNF
authorottero <rodrigo.ottero@est.tech>
Mon, 11 Mar 2019 14:03:09 +0000 (14:03 +0000)
committerottero <rodrigo.ottero@est.tech>
Mon, 11 Mar 2019 14:03:09 +0000 (14:03 +0000)
This is the first version of a blueprint, intended to be used to
configure PNFs.

The design considers that a blueprint will be created for each possible
PNF.

Change-Id: I4994149441257eb417b6d5f611e12cd81595177f
Issue-ID: CCSDK-1107
Signed-off-by: ottero <rodrigo.ottero@est.tech>
ms/blueprintsprocessor/application/pom.xml
ms/blueprintsprocessor/application/src/main/resources/application-dev.properties
ms/blueprintsprocessor/application/src/main/resources/application.properties
ms/blueprintsprocessor/functions/restconf-executor/src/main/kotlin/scripts/InternalSimpleRestconf.cba.kts

index f42cdfa..c96bd08 100755 (executable)
             <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
             <artifactId>netconf-executor</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
+            <artifactId>restconf-executor</artifactId>
+        </dependency>
         <dependency>
             <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
             <artifactId>selfservice-api</artifactId>
index b1f1689..380eb20 100755 (executable)
@@ -38,4 +38,11 @@ blueprintsprocessor.db.primary.hibernateDialect=org.hibernate.dialect.MySQL5Inno
 \r
 # Python executor\r
 blueprints.processor.functions.python.executor.executionPath=./../../../components/scripts/python/ccsdk_blueprints\r
-blueprints.processor.functions.python.executor.modulePaths=./../../../components/scripts/python/ccsdk_blueprints
\ No newline at end of file
+blueprints.processor.functions.python.executor.modulePaths=./../../../components/scripts/python/ccsdk_blueprints\r
+\r
+# SDN-C's ODL Restconf Connection Details\r
+blueprintsprocessor.restconfEnabled=true\r
+blueprintsprocessor.restclient.sdncodl.type=basic-auth\r
+blueprintsprocessor.restclient.sdncodl.url=http://localhost:8282/\r
+blueprintsprocessor.restclient.sdncodl.userId=admin\r
+blueprintsprocessor.restclient.sdncodl.token=Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
\ No newline at end of file
index e955c97..8cafceb 100755 (executable)
@@ -1,5 +1,5 @@
 #
-#  Copyright (c) 2017-2019 AT&T, IBM, Bell Canada.
+#  Copyright (c) 2017-2019 AT&T, IBM, Bell Canada, Nordix Foundation.
 #
 #  Licensed under the Apache License, Version 2.0 (the "License");
 #  you may not use this file except in compliance with the License.
@@ -21,9 +21,11 @@ server.port=8080
 blueprintsprocessor.grpcEnable=false
 blueprintsprocessor.httpPort=8080
 blueprintsprocessor.grpcPort=9111
+
 # Blueprint Processor File Execution and Handling Properties
 blueprintsprocessor.blueprintDeployPath=/opt/app/onap/blueprints/deploy
 blueprintsprocessor.blueprintArchivePath=/opt/app/onap/blueprints/archive
+
 # Primary Database Configuration
 blueprintsprocessor.db.primary.url=jdbc:mysql://db:3306/sdnctl
 blueprintsprocessor.db.primary.username=sdnctl
@@ -33,9 +35,16 @@ blueprintsprocessor.db.primary.hibernateHbm2ddlAuto=update
 blueprintsprocessor.db.primary.hibernateDDLAuto=update
 blueprintsprocessor.db.primary.hibernateNamingStrategy=org.hibernate.cfg.ImprovedNamingStrategy
 blueprintsprocessor.db.primary.hibernateDialect=org.hibernate.dialect.MySQL5InnoDBDialect
+
 # Python executor
 blueprints.processor.functions.python.executor.executionPath=/opt/app/onap/scripts/jython/ccsdk_blueprints
 blueprints.processor.functions.python.executor.modulePaths=/opt/app/onap/scripts/jython/ccsdk_blueprints,/opt/app/onap/scripts/jython/ccsdk_netconf
 
 security.user.password: {bcrypt}$2a$10$duaUzVUVW0YPQCSIbGEkQOXwafZGwQ/b32/Ys4R1iwSSawFgz7QNu
 security.user.name: ccsdkapps
+
+# SDN-C's ODL Restconf Connection Details
+blueprintsprocessor.restconfEnabled=true
+blueprintsprocessor.restclient.sdncodl.type=basic-auth
+blueprintsprocessor.restclient.sdncodl.url=http://sdnc:8282/
+blueprintsprocessor.restclient.sdncodl.userId=admin
index dbbebe5..588f7f1 100644 (file)
@@ -52,7 +52,6 @@ open class MountNEditConfigure : RestconfComponentFunction() {
 
     override fun process(executionRequest: ExecutionServiceInput) {
         val webClientService = restClientService("odlparent")
-        println("foi?")
         TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
     }
 
@@ -60,7 +59,6 @@ open class MountNEditConfigure : RestconfComponentFunction() {
         TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
     }
 
-
 }
 
 /**
@@ -82,19 +80,3 @@ open class TestRestconfConfigure : RestconfComponentFunction() {
         log.info("recovering..")
     }
 }
-
-
-
-println("zzzzzzzzzzzzz")
-val x = MountNEditConfigure()
-println(x.getName())
-val executionServiceInput = ExecutionServiceInput().apply {
-    commonHeader = CommonHeader().apply {
-        requestId = "1234"
-    }
-    actionIdentifiers = ActionIdentifiers().apply {
-        actionName = "activate"
-    }
-    payload = JacksonUtils.jsonNode("{}") as ObjectNode
-}
-x.process(executionServiceInput);
\ No newline at end of file