blob: a695554a8ce284e746e747fcc9c3dc101246ebe4 [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
JakobKrieg668466f2020-08-27 16:36:38 +0200279 **Add/replace the following in Blueprint's application-dev.properties file:**
JakobKriegf47eeee2020-08-17 21:04:35 +0200280
281 .. code-block:: java
282
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000283 blueprintsprocessor.grpcclient.remote-python.type=token-auth
284 blueprintsprocessor.grpcclient.remote-python.host=localhost
285 blueprintsprocessor.grpcclient.remote-python.port=50051
286 blueprintsprocessor.grpcclient.remote-python.token=Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
JakobKriegf47eeee2020-08-17 21:04:35 +0200287
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000288 blueprintprocessor.remoteScriptCommand.enabled=true
JakobKriegf47eeee2020-08-17 21:04:35 +0200289
290
JakobKrieg668466f2020-08-27 16:36:38 +0200291 **Run the application:**
JakobKriegf47eeee2020-08-17 21:04:35 +0200292
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000293 Select either run or debug for this Run Configuration to start the Blueprints Processor:
JakobKriegf47eeee2020-08-17 21:04:35 +0200294
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000295 |imageRunDebug|
JakobKriegf47eeee2020-08-17 21:04:35 +0200296
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000297 |imageBuildLogs|
JakobKriegf47eeee2020-08-17 21:04:35 +0200298
JakobKrieg668466f2020-08-27 16:36:38 +0200299 .. tab:: Visual Studio Code
JakobKriegf47eeee2020-08-17 21:04:35 +0200300
JakobKrieg668466f2020-08-27 16:36:38 +0200301 .. tabs::
JakobKriegf47eeee2020-08-17 21:04:35 +0200302
JakobKrieg668466f2020-08-27 16:36:38 +0200303 .. group-tab:: Latest
JakobKriegf47eeee2020-08-17 21:04:35 +0200304
JakobKrieg668466f2020-08-27 16:36:38 +0200305 * **Step #1** - Make sure your installation of Visual Studio Code is up to date. This guide was writen using version 1.48
306 * **Step #2** - Install `Kotlin extension from the Visual Studio Code Marketplace <https://marketplace.visualstudio.com/items?itemName=fwcd.kotlin>`_
307 * **Step #3** - On the top menu click *Run | Open Configurations*
JakobKriegf47eeee2020-08-17 21:04:35 +0200308
JakobKrieg668466f2020-08-27 16:36:38 +0200309 .. 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.
310 Please watch the bottom bar in Visual Studio Code for messages about things getting installed.
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000311
JakobKrieg668466f2020-08-27 16:36:38 +0200312 * **Step #4** - add configuration shown below to your configurations list.
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000313
JakobKrieg668466f2020-08-27 16:36:38 +0200314 .. code-block:: json
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000315
JakobKrieg668466f2020-08-27 16:36:38 +0200316 {
317 "type": "kotlin",
318 "request": "launch",
319 "name": "Blueprint Processor",
320 "projectRoot": "${workspaceFolder}/ms/blueprintsprocessor/application",
321 "mainClass": "-Dspring.profiles.active=dev org.onap.ccsdk.cds.blueprintsprocessor.BlueprintProcessorApplicationKt"
322 }
323
324 .. warning:: The `projectRoot` path assumes that you created your Workspace in the main CDS repository folder. If not - please change the path accordingly
325
326 .. 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.
327 If you have a cleaner idea how to solve this - please let us know.
328
329 **Add/replace the following in Blueprint's application-dev.properties file:**
330
331 .. code-block:: java
332
333 blueprintsprocessor.grpcclient.remote-python.type=token-auth
334 blueprintsprocessor.grpcclient.remote-python.host=localhost
335 blueprintsprocessor.grpcclient.remote-python.port=50051
336 blueprintsprocessor.grpcclient.remote-python.token=Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
337
338 blueprintprocessor.remoteScriptCommand.enabled=true
339
340 **Currently the following entries need to be added in VSC too:**
341
342 .. code-block:: java
343
344 logging.level.web=DEBUG
345 logging.level.org.springframework.web: DEBUG
346
347 #Encrypted username and password for health check service
348 endpoints.user.name=eHbVUbJAj4AG2522cSbrOQ==
349 endpoints.user.password=eHbVUbJAj4AG2522cSbrOQ==
350
351 #BaseUrls for health check blueprint processor services
352 blueprintprocessor.healthcheck.baseUrl=http://localhost:8080/
353 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]
354
355 #BaseUrls for health check Cds Listener services
356 cdslistener.healthcheck.baseUrl=http://cds-sdc-listener:8080/
357 cdslistener.healthcheck.mapping-service-name-with-service-link=[SDC Listener service,/api/v1/sdclistener/healthcheck]
358
359 #Actuator properties
360 management.endpoints.web.exposure.include=*
361 management.endpoint.health.show-details=always
362 management.info.git.mode=full
363
364 In VSC the properties are read from target folder, thats why the following maven command needs to be rerun:
365
366 .. code-block:: bash
367
368 mvn clean install -DskipTests=true -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dadditionalparam=-Xdoclint:none
369
370 Click Run in Menu bar.
371
372 |imageLogsVSC|
JakobKriegf47eeee2020-08-17 21:04:35 +0200373
374
375Testing the application
376~~~~~~~~~~~~~~~~~~~~~~~~~
377
378There are two main features of the Blueprints Processor that can be of interest of a developer:
379blueprint upload and blueprint process.
380
381To upload custom blueprints, the endpoint ``api/v1/execution-service/upload`` is used.
382
383To process, the endpoint is ``api/v1/execution-service/process``.
384
385Postman is a software that can be used to send these request, and an example of
386them is present on https://www.getpostman.com/collections/b99863b0cde7565a32fc.
387
388
389Possible Fixes
390~~~~~~~~~~~~~~~~~~~
391
392Imported packages or annotiations are not found, Run Config not available?
393*****************************************************************************
394
3951. Rebuild with ``maven install ...`` (see above)
3962. Potentially change Maven home directory in Settings
3973. Maven reimport in IDE
398
399Compilation error?
400********************
401
402* Change Java Version to 11 or 8
403
JakobKrieg668466f2020-08-27 16:36:38 +0200404
405.. image alignment inside tabs doesn't work
406
JakobKriegf47eeee2020-08-17 21:04:35 +0200407.. |imageRunConfigJava| image:: media/run_config_java.png
JakobKrieg668466f2020-08-27 16:36:38 +0200408 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200409 :align: middle
410
411.. |imageRunConfigKt| image:: media/run_config_kt.png
JakobKrieg668466f2020-08-27 16:36:38 +0200412 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200413 :align: middle
414
415.. |imageCreateRunConfigJava| image:: media/create_run_config_java.png
JakobKrieg668466f2020-08-27 16:36:38 +0200416 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200417 :align: middle
418
419.. |imageCreateRunConfigKt| image:: media/create_run_config_kt.png
JakobKrieg668466f2020-08-27 16:36:38 +0200420 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200421 :align: middle
422
423.. |imageImportProject| image:: media/import_project.png
JakobKrieg668466f2020-08-27 16:36:38 +0200424 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200425 :align: middle
426
427.. |imageReimportMaven| image:: media/reimport_maven.png
JakobKrieg668466f2020-08-27 16:36:38 +0200428 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200429 :align: middle
430
431.. |imageRunDebug| image:: media/run_debug.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
436 :align: middle
JakobKrieg668466f2020-08-27 16:36:38 +0200437 :scale: 75 %
JakobKriegf47eeee2020-08-17 21:04:35 +0200438
439.. |imageBuildLogs| image:: media/build_logs.png
440 :align: middle
JakobKrieg668466f2020-08-27 16:36:38 +0200441 :scale: 75 %
442
443.. |imageLogsVSC| image:: media/vsc_logs.png
444 :align: middle
445 :scale: 75 %