blob: 83554e2c785ffe0bddc85e386e7fd5ccfb95672d [file] [log] [blame]
JakobKriegf47eeee2020-08-17 21:04:35 +02001.. This work is a derivative of https://wiki.onap.org/display/DW/Running+Blueprints+Processor+Microservice+in+an+IDE
2.. This work is licensed under a Creative Commons Attribution 4.0
3.. International License. http://creativecommons.org/licenses/by/4.0
4.. Copyright (C) 2020 Deutsche Telekom AG.
5
6Running Blueprints Processor Microservice in an IDE
7====================================================
8
9Objective
10~~~~~~~~~~~~
11
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +000012Have the blueprint processor running locally is to use the IDE to run the code, while having the database running in a container.
JakobKriegf47eeee2020-08-17 21:04:35 +020013This way, code changes can be conveniently tested and debugged.
14
15
16Check out the code
17~~~~~~~~~~~~~~~~~~~
18
19Check out the code from Gerrit: https://gerrit.onap.org/r/#/admin/projects/ccsdk/cds
20
21Build it locally
22~~~~~~~~~~~~~~~~~~
23
24In the checked out directory, type
25
26.. code-block:: bash
27
28 mvn clean install -DskipTests=true -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dadditionalparam=-Xdoclint:none
29
30Spin up a Docker container with the database
31~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +000033The Blueprints Processor project uses a database to store information about the blueprints
JakobKriegf47eeee2020-08-17 21:04:35 +020034and therefore it needs to be online before attempting to run it.
35
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +000036One way to create the database is by using the :file:`docker-compose.yaml`
JakobKriegf47eeee2020-08-17 21:04:35 +020037file present on the distribution module. This database will require a local directory to mount a volume, before running docker-compose remember to create following directory:
38
39.. code-block:: bash
40
41 mkdir -p -m 755 /opt/app/cds/mysql/data
42
43Navigate to the docker-compose file in the distribution module:
44
45.. tabs::
46
47 .. group-tab:: Latest
48
49 .. code-block:: bash
50
51 cd ms/blueprintsprocessor/application/src/main/dc
52
53 .. group-tab:: Frankfurt
54
55 .. code-block:: bash
56
57 cd ms/blueprintsprocessor/application/src/main/dc
58
59 .. group-tab:: El Alto
60
61 .. code-block:: bash
62
63 ms/blueprintsprocessor/distribution/src/main/dc
64
65 .. group-tab:: Dublin
66
67 .. code-block:: bash
68
69 ms/blueprintsprocessor/distribution/src/main/dc
70
71And run docker-composer:
72
73.. code-block:: bash
74
75 docker-compose up -d db
76
77This should spin up a container of the MariaDB image in the background.
78To check if it has worked, this command can be used:
79
80.. code-block:: bash
81
82 docker-compose logs -f
83
84The phrase ``mysqld: ready for connections`` indicates that the database was started correctly.
85
86From now on, the Docker container will be available on the computer; if it ever gets stopped,
87it can be started again by the command:
88
89.. code-block:: bash
90
91 docker start <id of mariadb container>
92
93
94Set permissions on the local file system
95~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
96
97Blueprints processor uses the local file system for some operations and, therefore,
98need some existing and accessible paths to run properly.
99
100Execute the following commands to create the needed directories, and grant access to the current user to modify them:
101
102.. code-block:: bash
103
104 mkdir -p -m 755 /opt/app/onap/blueprints/archive
105 mkdir -p -m 755 /opt/app/onap/blueprints/deploy
106 mkdir -p -m 755 /opt/app/onap/scripts
107 sudo chown -R $(id -u):$(id -g) /opt/app/onap/
108
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000109Import the project into the IDE
JakobKriegf47eeee2020-08-17 21:04:35 +0200110~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
111
JakobKrieg668466f2020-08-27 16:36:38 +0200112.. tabs::
JakobKriegf47eeee2020-08-17 21:04:35 +0200113
JakobKrieg668466f2020-08-27 16:36:38 +0200114 .. tab:: IntelliJ IDEA
JakobKriegf47eeee2020-08-17 21:04:35 +0200115
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000116 Go to *File | Open* and choose the :file:`pom.xml` file of the cds directory:
JakobKriegf47eeee2020-08-17 21:04:35 +0200117
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000118 |imageImportProject|
JakobKriegf47eeee2020-08-17 21:04:35 +0200119
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000120 Sometimes it may be necessary to reimport Maven project:
121
122 |imageReimportMaven|
JakobKriegf47eeee2020-08-17 21:04:35 +0200123
124
JakobKrieg668466f2020-08-27 16:36:38 +0200125 **Override some application properties:**
JakobKriegf47eeee2020-08-17 21:04:35 +0200126
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000127 After the project is compiled, a Run Configuration profile overriding some application properties
128 with custom values needs to be created, to reflect the local environment characteristics.
JakobKriegf47eeee2020-08-17 21:04:35 +0200129
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000130 .. tabs::
JakobKriegf47eeee2020-08-17 21:04:35 +0200131
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000132 .. group-tab:: Latest
JakobKriegf47eeee2020-08-17 21:04:35 +0200133
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000134 Navigate to the main class of the Blueprints Processor, the BlueprintProcessorApplication class:
JakobKriegf47eeee2020-08-17 21:04:35 +0200135
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000136 ``ms/blueprintsprocessor/application/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/BlueprintProcessorApplication.kt``.
JakobKriegf47eeee2020-08-17 21:04:35 +0200137
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000138 Right-click inside it, at any point, to load the context menu and select create
139 BlueprintProcessorApplication configuration from context:
JakobKriegf47eeee2020-08-17 21:04:35 +0200140
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000141 |imageCreateRunConfigkt|
JakobKriegf47eeee2020-08-17 21:04:35 +0200142
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000143 **The following window will open:**
JakobKriegf47eeee2020-08-17 21:04:35 +0200144
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000145 |imageRunConfigKt|
JakobKriegf47eeee2020-08-17 21:04:35 +0200146
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000147 **Add the following in the field `VM Options`:**
JakobKriegf47eeee2020-08-17 21:04:35 +0200148
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000149 .. code-block:: bash
150 :caption: **Custom values for properties**
JakobKriegf47eeee2020-08-17 21:04:35 +0200151
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000152 -Dspring.profiles.active=dev
JakobKriegf47eeee2020-08-17 21:04:35 +0200153
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000154 You can override any value from **application-dev.properties** file here. Use the following pattern:
155
156 .. code-block:: java
157
158 -D<application-dev.properties key>=<application-dev.properties value>
159
160 .. group-tab:: Frankfurt
161
162 Navigate to the main class of the Blueprints Processor, the BlueprintProcessorApplication class:
163
164 ``ms/blueprintsprocessor/application/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/BlueprintProcessorApplication.kt``.
165
166 Right-click inside it, at any point, to load the context menu and select create
167 BlueprintProcessorApplication configuration from context:
168
169 |imageCreateRunConfigkt|
170
171 **The following window will open:**
172
173 |imageRunConfigKt|
174
175 **Add the following in the field `VM Options`:**
176
177 .. code-block:: bash
178 :caption: **Custom values for properties**
179
180 -Dspring.profiles.active=dev
181
182 You can override any value from **application-dev.properties** file here. Use the following pattern:
183
184 .. code-block:: java
185
186 -D<application-dev.properties key>=<application-dev.properties value>
187
188 .. group-tab:: El Alto
189
190 Navigate to the main class of the Blueprints Processor, the BlueprintProcessorApplication class:
191
192 ``ms/blueprintsprocessor/application/src/main/java/org/onap/ccsdk/cds/blueprintsprocessor/BlueprintProcessorApplication.java.``
193
194 Right-click inside it, at any point, to load the context menu and select create
195 BlueprintProcessorApplication configuration from context:
196
197 |imageCreateRunConfigJava|
198
199 **The following window will open:**
200
201 |imageRunConfigJava|
202
203 **Add the following in the field `VM Options`:**
204
205 .. code-block:: bash
206 :caption: **Custom values for properties**
207
208 -Dspring.profiles.active=dev
209
210 You can override any value from **application-dev.properties** file here. Use the following pattern:
211
212 .. code-block:: java
213
214 -D<application-dev.properties key>=<application-dev.properties value>
215
216 .. group-tab:: Dublin
217
218 Navigate to the main class of the Blueprints Processor, the BlueprintProcessorApplication class:
219
220 ``ms/blueprintsprocessor/application/src/main/java/org/onap/ccsdk/cds/blueprintsprocessor/BlueprintProcessorApplication.java``.
221
222 Right-click inside it, at any point, to load the context menu and select create
223 BlueprintProcessorApplication configuration from context:
224
225 |imageCreateRunConfigJava|
226
227 **The following window will open:**
228
229 |imageRunConfigJava|
230
231 **Add the following in that field:**
232
233 .. code-block:: java
234 :caption: **Custom values for properties**
235
236 -DappName=ControllerBluePrints
237 -Dms_name=org.onap.ccsdk.apps.controllerblueprints
238 -DappVersion=1.0.0
239 -Dspring.config.location=opt/app/onap/config/
240 -Dspring.datasource.url=jdbc:mysql://127.0.0.1:3306/sdnctl
241 -Dspring.datasource.username=sdnctl
242 -Dspring.datasource.password=sdnctl
243 -Dcontrollerblueprints.loadInitialData=true
244 -Dblueprintsprocessor.restclient.sdncodl.url=http://localhost:8282/
245 -Dblueprintsprocessor.db.primary.url=jdbc:mysql://localhost:3306/sdnctl
246 -Dblueprintsprocessor.db.primary.username=sdnctl
247 -Dblueprintsprocessor.db.primary.password=sdnctl
248 -Dblueprintsprocessor.db.primary.driverClassName=org.mariadb.jdbc.Driver
249 -Dblueprintsprocessor.db.primary.hibernateHbm2ddlAuto=update
250 -Dblueprintsprocessor.db.primary.hibernateDDLAuto=none
251 -Dblueprintsprocessor.db.primary.hibernateNamingStrategy=org.hibernate.cfg.ImprovedNamingStrategy
252 -Dblueprintsprocessor.db.primary.hibernateDialect=org.hibernate.dialect.MySQL5InnoDBDialect
253 -Dblueprints.processor.functions.python.executor.executionPath=./components/scripts/python/ccsdk_blueprints
254 -Dblueprints.processor.functions.python.executor.modulePaths=./components/scripts/python/ccsdk_blueprints,./components/scripts/python/ccsdk_netconf,./components/scripts/python/ccsdk_restconf
255 -Dblueprintsprocessor.restconfEnabled=true
256 -Dblueprintsprocessor.restclient.sdncodl.type=basic-auth
257 -Dblueprintsprocessor.restclient.sdncodl.url=http://localhost:8282/
258 -Dblueprintsprocessor.restclient.sdncodl.username=admin
259 -Dblueprintsprocessor.restclient.sdncodl.password=Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
260 -Dblueprintsprocessor.grpcEnable=false
261 -Dblueprintsprocessor.grpcPort=9111
262 -Dblueprintsprocessor.blueprintDeployPath=/opt/app/onap/blueprints/deploy
263 -Dblueprintsprocessor.blueprintArchivePath=/opt/app/onap/blueprints/archive
264 -Dblueprintsprocessor.blueprintWorkingPath=/opt/app/onap/blueprints/work
265 -Dsecurity.user.password={bcrypt}$2a$10$duaUzVUVW0YPQCSIbGEkQOXwafZGwQ/b32/Ys4R1iwSSawFgz7QNu
266 -Dsecurity.user.name=ccsdkapps
267 -Dblueprintsprocessor.messageclient.self-service-api.kafkaEnable=false
268 -Dblueprintsprocessor.messageclient.self-service-api.topic=producer.t
269 -Dblueprintsprocessor.messageclient.self-service-api.type=kafka-basic-auth
270 -Dblueprintsprocessor.messageclient.self-service-api.bootstrapServers=127.0.0.1:9092
271 -Dblueprintsprocessor.messageclient.self-service-api.consumerTopic=receiver.t
272 -Dblueprintsprocessor.messageclient.self-service-api.groupId=receiver-id
273 -Dblueprintsprocessor.messageclient.self-service-api.clientId=default-client-id
274 -Dspring.profiles.active=dev
275 -Dblueprintsprocessor.httpPort=8080
276 -Dserver.port=55555
277
278
JakobKriegb708ee62020-09-08 17:34:30 +0200279 **Browse Working Directory to your application path** ``.../cds/ms/blueprintsprocessor/application``
280 **if path is not already specified correctly.**
281
JakobKrieg668466f2020-08-27 16:36:38 +0200282 **Add/replace the following in Blueprint's application-dev.properties file:**
JakobKriegf47eeee2020-08-17 21:04:35 +0200283
284 .. code-block:: java
285
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000286 blueprintsprocessor.grpcclient.remote-python.type=token-auth
287 blueprintsprocessor.grpcclient.remote-python.host=localhost
288 blueprintsprocessor.grpcclient.remote-python.port=50051
289 blueprintsprocessor.grpcclient.remote-python.token=Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
JakobKriegf47eeee2020-08-17 21:04:35 +0200290
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000291 blueprintprocessor.remoteScriptCommand.enabled=true
JakobKriegf47eeee2020-08-17 21:04:35 +0200292
293
JakobKrieg668466f2020-08-27 16:36:38 +0200294 **Run the application:**
JakobKriegf47eeee2020-08-17 21:04:35 +0200295
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000296 Select either run or debug for this Run Configuration to start the Blueprints Processor:
JakobKriegf47eeee2020-08-17 21:04:35 +0200297
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000298 |imageRunDebug|
JakobKriegf47eeee2020-08-17 21:04:35 +0200299
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000300 |imageBuildLogs|
JakobKriegf47eeee2020-08-17 21:04:35 +0200301
JakobKrieg668466f2020-08-27 16:36:38 +0200302 .. tab:: Visual Studio Code
JakobKriegf47eeee2020-08-17 21:04:35 +0200303
JakobKrieg668466f2020-08-27 16:36:38 +0200304 .. tabs::
JakobKriegf47eeee2020-08-17 21:04:35 +0200305
JakobKrieg668466f2020-08-27 16:36:38 +0200306 .. group-tab:: Latest
JakobKriegf47eeee2020-08-17 21:04:35 +0200307
JakobKrieg668466f2020-08-27 16:36:38 +0200308 * **Step #1** - Make sure your installation of Visual Studio Code is up to date. This guide was writen using version 1.48
309 * **Step #2** - Install `Kotlin extension from the Visual Studio Code Marketplace <https://marketplace.visualstudio.com/items?itemName=fwcd.kotlin>`_
310 * **Step #3** - On the top menu click *Run | Open Configurations*
JakobKriegf47eeee2020-08-17 21:04:35 +0200311
JakobKrieg668466f2020-08-27 16:36:38 +0200312 .. warning:: This should open the file called `launch.json` but in some cases you'll need to wait for the Kotlin Language Server to be installed before you can do anything.
313 Please watch the bottom bar in Visual Studio Code for messages about things getting installed.
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000314
JakobKrieg668466f2020-08-27 16:36:38 +0200315 * **Step #4** - add configuration shown below to your configurations list.
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000316
JakobKrieg668466f2020-08-27 16:36:38 +0200317 .. code-block:: json
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000318
JakobKrieg668466f2020-08-27 16:36:38 +0200319 {
320 "type": "kotlin",
321 "request": "launch",
322 "name": "Blueprint Processor",
323 "projectRoot": "${workspaceFolder}/ms/blueprintsprocessor/application",
324 "mainClass": "-Dspring.profiles.active=dev org.onap.ccsdk.cds.blueprintsprocessor.BlueprintProcessorApplicationKt"
325 }
326
327 .. warning:: The `projectRoot` path assumes that you created your Workspace in the main CDS repository folder. If not - please change the path accordingly
328
329 .. note:: The `mainClass` contains a spring profile param before the full class name. This is done because `args` is not supported by Kotlin launch.json configuration.
330 If you have a cleaner idea how to solve this - please let us know.
331
332 **Add/replace the following in Blueprint's application-dev.properties file:**
333
334 .. code-block:: java
335
336 blueprintsprocessor.grpcclient.remote-python.type=token-auth
337 blueprintsprocessor.grpcclient.remote-python.host=localhost
338 blueprintsprocessor.grpcclient.remote-python.port=50051
339 blueprintsprocessor.grpcclient.remote-python.token=Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
340
341 blueprintprocessor.remoteScriptCommand.enabled=true
342
343 **Currently the following entries need to be added in VSC too:**
344
345 .. code-block:: java
346
347 logging.level.web=DEBUG
348 logging.level.org.springframework.web: DEBUG
349
350 #Encrypted username and password for health check service
351 endpoints.user.name=eHbVUbJAj4AG2522cSbrOQ==
352 endpoints.user.password=eHbVUbJAj4AG2522cSbrOQ==
353
354 #BaseUrls for health check blueprint processor services
355 blueprintprocessor.healthcheck.baseUrl=http://localhost:8080/
356 blueprintprocessor.healthcheck.mapping-service-name-with-service-link=[Execution service,/api/v1/execution-service/health-check],[Resources service,/api/v1/resources/health-check],[Template service,/api/v1/template/health-check]
357
358 #BaseUrls for health check Cds Listener services
359 cdslistener.healthcheck.baseUrl=http://cds-sdc-listener:8080/
360 cdslistener.healthcheck.mapping-service-name-with-service-link=[SDC Listener service,/api/v1/sdclistener/healthcheck]
361
362 #Actuator properties
363 management.endpoints.web.exposure.include=*
364 management.endpoint.health.show-details=always
365 management.info.git.mode=full
366
367 In VSC the properties are read from target folder, thats why the following maven command needs to be rerun:
368
369 .. code-block:: bash
370
371 mvn clean install -DskipTests=true -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dadditionalparam=-Xdoclint:none
372
373 Click Run in Menu bar.
374
375 |imageLogsVSC|
JakobKriegf47eeee2020-08-17 21:04:35 +0200376
377
378Testing the application
379~~~~~~~~~~~~~~~~~~~~~~~~~
380
381There are two main features of the Blueprints Processor that can be of interest of a developer:
JakobKriegb708ee62020-09-08 17:34:30 +0200382blueprint publish and blueprint process.
JakobKriegf47eeee2020-08-17 21:04:35 +0200383
JakobKriegb708ee62020-09-08 17:34:30 +0200384To upload custom blueprints, the endpoint ``api/v1/execution-service/publish`` is used.
JakobKriegf47eeee2020-08-17 21:04:35 +0200385
386To process, the endpoint is ``api/v1/execution-service/process``.
387
388Postman is a software that can be used to send these request, and an example of
389them is present on https://www.getpostman.com/collections/b99863b0cde7565a32fc.
390
JakobKriegb708ee62020-09-08 17:34:30 +0200391A detailed description of the usage of different APIs of CDS will follow.
JakobKriegf47eeee2020-08-17 21:04:35 +0200392
393Possible Fixes
394~~~~~~~~~~~~~~~~~~~
395
396Imported packages or annotiations are not found, Run Config not available?
397*****************************************************************************
398
3991. Rebuild with ``maven install ...`` (see above)
4002. Potentially change Maven home directory in Settings
4013. Maven reimport in IDE
402
403Compilation error?
404********************
405
406* Change Java Version to 11 or 8
407
JakobKrieg668466f2020-08-27 16:36:38 +0200408
409.. image alignment inside tabs doesn't work
410
JakobKriegf47eeee2020-08-17 21:04:35 +0200411.. |imageRunConfigJava| image:: media/run_config_java.png
JakobKrieg668466f2020-08-27 16:36:38 +0200412 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200413 :align: middle
414
415.. |imageRunConfigKt| image:: media/run_config_kt.png
JakobKrieg668466f2020-08-27 16:36:38 +0200416 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200417 :align: middle
418
419.. |imageCreateRunConfigJava| image:: media/create_run_config_java.png
JakobKrieg668466f2020-08-27 16:36:38 +0200420 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200421 :align: middle
422
423.. |imageCreateRunConfigKt| image:: media/create_run_config_kt.png
JakobKrieg668466f2020-08-27 16:36:38 +0200424 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200425 :align: middle
426
427.. |imageImportProject| image:: media/import_project.png
JakobKrieg668466f2020-08-27 16:36:38 +0200428 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200429 :align: middle
430
431.. |imageReimportMaven| image:: media/reimport_maven.png
JakobKrieg668466f2020-08-27 16:36:38 +0200432 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200433 :align: middle
434
435.. |imageRunDebug| image:: media/run_debug.png
JakobKrieg668466f2020-08-27 16:36:38 +0200436 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200437 :align: middle
438
439.. |imageRunDebug| image:: media/run_debug.png
440 :align: middle
JakobKrieg668466f2020-08-27 16:36:38 +0200441 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200442
443.. |imageBuildLogs| image:: media/build_logs.png
444 :align: middle
JakobKrieg668466f2020-08-27 16:36:38 +0200445 :scale: 75 %
446
447.. |imageLogsVSC| image:: media/vsc_logs.png
448 :align: middle
449 :scale: 75 %