blob: 4a0cac58d534e9d3327d336d6b08b55eb75e9f3b [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
JakobKriegf47eeee2020-08-17 21:04:35 +020015Check out the code
16~~~~~~~~~~~~~~~~~~~
17
18Check out the code from Gerrit: https://gerrit.onap.org/r/#/admin/projects/ccsdk/cds
19
20Build it locally
21~~~~~~~~~~~~~~~~~~
22
23In the checked out directory, type
24
25.. code-block:: bash
26
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -040027 mvn clean install -Pq -Dadditionalparam=-Xdoclint:none
JakobKriegf47eeee2020-08-17 21:04:35 +020028
29Spin up a Docker container with the database
30~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +000032The Blueprints Processor project uses a database to store information about the blueprints
JakobKriegf47eeee2020-08-17 21:04:35 +020033and therefore it needs to be online before attempting to run it.
34
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +000035One way to create the database is by using the :file:`docker-compose.yaml`
JakobKriegf47eeee2020-08-17 21:04:35 +020036file 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:
37
38.. code-block:: bash
39
40 mkdir -p -m 755 /opt/app/cds/mysql/data
41
42Navigate to the docker-compose file in the distribution module:
43
Singal, Kapil (ks220y)51e7c122020-09-25 17:22:54 -040044.. code-block:: bash
JakobKriegf47eeee2020-08-17 21:04:35 +020045
Singal, Kapil (ks220y)51e7c122020-09-25 17:22:54 -040046 ms/blueprintsprocessor/distribution/src/main/dc
JakobKriegf47eeee2020-08-17 21:04:35 +020047
48And run docker-composer:
49
50.. code-block:: bash
51
52 docker-compose up -d db
53
54This should spin up a container of the MariaDB image in the background.
55To check if it has worked, this command can be used:
56
57.. code-block:: bash
58
59 docker-compose logs -f
60
61The phrase ``mysqld: ready for connections`` indicates that the database was started correctly.
62
63From now on, the Docker container will be available on the computer; if it ever gets stopped,
64it can be started again by the command:
65
66.. code-block:: bash
67
68 docker start <id of mariadb container>
69
JakobKriegf47eeee2020-08-17 21:04:35 +020070Set permissions on the local file system
71~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
72
73Blueprints processor uses the local file system for some operations and, therefore,
74need some existing and accessible paths to run properly.
75
76Execute the following commands to create the needed directories, and grant access to the current user to modify them:
77
78.. code-block:: bash
79
80 mkdir -p -m 755 /opt/app/onap/blueprints/archive
81 mkdir -p -m 755 /opt/app/onap/blueprints/deploy
82 mkdir -p -m 755 /opt/app/onap/scripts
83 sudo chown -R $(id -u):$(id -g) /opt/app/onap/
84
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +000085Import the project into the IDE
JakobKriegf47eeee2020-08-17 21:04:35 +020086~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
87
JakobKrieg668466f2020-08-27 16:36:38 +020088.. tabs::
JakobKriegf47eeee2020-08-17 21:04:35 +020089
JakobKrieg668466f2020-08-27 16:36:38 +020090 .. tab:: IntelliJ IDEA
JakobKriegf47eeee2020-08-17 21:04:35 +020091
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +000092 Go to *File | Open* and choose the :file:`pom.xml` file of the cds directory:
JakobKriegf47eeee2020-08-17 21:04:35 +020093
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +000094 |imageImportProject|
JakobKriegf47eeee2020-08-17 21:04:35 +020095
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +000096 Sometimes it may be necessary to reimport Maven project:
97
98 |imageReimportMaven|
JakobKriegf47eeee2020-08-17 21:04:35 +020099
JakobKrieg668466f2020-08-27 16:36:38 +0200100 **Override some application properties:**
JakobKriegf47eeee2020-08-17 21:04:35 +0200101
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000102 After the project is compiled, a Run Configuration profile overriding some application properties
103 with custom values needs to be created, to reflect the local environment characteristics.
JakobKriegf47eeee2020-08-17 21:04:35 +0200104
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000105 .. tabs::
JakobKriegf47eeee2020-08-17 21:04:35 +0200106
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000107 .. group-tab:: Latest
JakobKriegf47eeee2020-08-17 21:04:35 +0200108
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000109 Navigate to the main class of the Blueprints Processor, the BlueprintProcessorApplication class:
JakobKriegf47eeee2020-08-17 21:04:35 +0200110
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000111 ``ms/blueprintsprocessor/application/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/BlueprintProcessorApplication.kt``.
JakobKriegf47eeee2020-08-17 21:04:35 +0200112
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000113 Right-click inside it, at any point, to load the context menu and select create
114 BlueprintProcessorApplication configuration from context:
JakobKriegf47eeee2020-08-17 21:04:35 +0200115
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000116 |imageCreateRunConfigkt|
JakobKriegf47eeee2020-08-17 21:04:35 +0200117
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000118 **The following window will open:**
JakobKriegf47eeee2020-08-17 21:04:35 +0200119
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000120 |imageRunConfigKt|
JakobKriegf47eeee2020-08-17 21:04:35 +0200121
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000122 **Add the following in the field `VM Options`:**
JakobKriegf47eeee2020-08-17 21:04:35 +0200123
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000124 .. code-block:: bash
125 :caption: **Custom values for properties**
JakobKriegf47eeee2020-08-17 21:04:35 +0200126
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000127 -Dspring.profiles.active=dev
JakobKriegf47eeee2020-08-17 21:04:35 +0200128
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000129 You can override any value from **application-dev.properties** file here. Use the following pattern:
130
131 .. code-block:: java
132
133 -D<application-dev.properties key>=<application-dev.properties value>
134
135 .. group-tab:: Frankfurt
136
137 Navigate to the main class of the Blueprints Processor, the BlueprintProcessorApplication class:
138
139 ``ms/blueprintsprocessor/application/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/BlueprintProcessorApplication.kt``.
140
141 Right-click inside it, at any point, to load the context menu and select create
142 BlueprintProcessorApplication configuration from context:
143
144 |imageCreateRunConfigkt|
145
146 **The following window will open:**
147
148 |imageRunConfigKt|
149
150 **Add the following in the field `VM Options`:**
151
152 .. code-block:: bash
153 :caption: **Custom values for properties**
154
155 -Dspring.profiles.active=dev
156
157 You can override any value from **application-dev.properties** file here. Use the following pattern:
158
159 .. code-block:: java
160
161 -D<application-dev.properties key>=<application-dev.properties value>
162
163 .. group-tab:: El Alto
164
165 Navigate to the main class of the Blueprints Processor, the BlueprintProcessorApplication class:
166
167 ``ms/blueprintsprocessor/application/src/main/java/org/onap/ccsdk/cds/blueprintsprocessor/BlueprintProcessorApplication.java.``
168
169 Right-click inside it, at any point, to load the context menu and select create
170 BlueprintProcessorApplication configuration from context:
171
172 |imageCreateRunConfigJava|
173
174 **The following window will open:**
175
176 |imageRunConfigJava|
177
178 **Add the following in the field `VM Options`:**
179
180 .. code-block:: bash
181 :caption: **Custom values for properties**
182
183 -Dspring.profiles.active=dev
184
185 You can override any value from **application-dev.properties** file here. Use the following pattern:
186
187 .. code-block:: java
188
189 -D<application-dev.properties key>=<application-dev.properties value>
190
191 .. group-tab:: Dublin
192
193 Navigate to the main class of the Blueprints Processor, the BlueprintProcessorApplication class:
194
195 ``ms/blueprintsprocessor/application/src/main/java/org/onap/ccsdk/cds/blueprintsprocessor/BlueprintProcessorApplication.java``.
196
197 Right-click inside it, at any point, to load the context menu and select create
198 BlueprintProcessorApplication configuration from context:
199
200 |imageCreateRunConfigJava|
201
202 **The following window will open:**
203
204 |imageRunConfigJava|
205
206 **Add the following in that field:**
207
208 .. code-block:: java
209 :caption: **Custom values for properties**
210
211 -DappName=ControllerBluePrints
212 -Dms_name=org.onap.ccsdk.apps.controllerblueprints
213 -DappVersion=1.0.0
214 -Dspring.config.location=opt/app/onap/config/
215 -Dspring.datasource.url=jdbc:mysql://127.0.0.1:3306/sdnctl
216 -Dspring.datasource.username=sdnctl
217 -Dspring.datasource.password=sdnctl
218 -Dcontrollerblueprints.loadInitialData=true
219 -Dblueprintsprocessor.restclient.sdncodl.url=http://localhost:8282/
220 -Dblueprintsprocessor.db.primary.url=jdbc:mysql://localhost:3306/sdnctl
221 -Dblueprintsprocessor.db.primary.username=sdnctl
222 -Dblueprintsprocessor.db.primary.password=sdnctl
223 -Dblueprintsprocessor.db.primary.driverClassName=org.mariadb.jdbc.Driver
224 -Dblueprintsprocessor.db.primary.hibernateHbm2ddlAuto=update
225 -Dblueprintsprocessor.db.primary.hibernateDDLAuto=none
226 -Dblueprintsprocessor.db.primary.hibernateNamingStrategy=org.hibernate.cfg.ImprovedNamingStrategy
227 -Dblueprintsprocessor.db.primary.hibernateDialect=org.hibernate.dialect.MySQL5InnoDBDialect
228 -Dblueprints.processor.functions.python.executor.executionPath=./components/scripts/python/ccsdk_blueprints
229 -Dblueprints.processor.functions.python.executor.modulePaths=./components/scripts/python/ccsdk_blueprints,./components/scripts/python/ccsdk_netconf,./components/scripts/python/ccsdk_restconf
230 -Dblueprintsprocessor.restconfEnabled=true
231 -Dblueprintsprocessor.restclient.sdncodl.type=basic-auth
232 -Dblueprintsprocessor.restclient.sdncodl.url=http://localhost:8282/
233 -Dblueprintsprocessor.restclient.sdncodl.username=admin
234 -Dblueprintsprocessor.restclient.sdncodl.password=Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
235 -Dblueprintsprocessor.grpcEnable=false
236 -Dblueprintsprocessor.grpcPort=9111
237 -Dblueprintsprocessor.blueprintDeployPath=/opt/app/onap/blueprints/deploy
238 -Dblueprintsprocessor.blueprintArchivePath=/opt/app/onap/blueprints/archive
239 -Dblueprintsprocessor.blueprintWorkingPath=/opt/app/onap/blueprints/work
240 -Dsecurity.user.password={bcrypt}$2a$10$duaUzVUVW0YPQCSIbGEkQOXwafZGwQ/b32/Ys4R1iwSSawFgz7QNu
241 -Dsecurity.user.name=ccsdkapps
242 -Dblueprintsprocessor.messageclient.self-service-api.kafkaEnable=false
243 -Dblueprintsprocessor.messageclient.self-service-api.topic=producer.t
244 -Dblueprintsprocessor.messageclient.self-service-api.type=kafka-basic-auth
245 -Dblueprintsprocessor.messageclient.self-service-api.bootstrapServers=127.0.0.1:9092
246 -Dblueprintsprocessor.messageclient.self-service-api.consumerTopic=receiver.t
247 -Dblueprintsprocessor.messageclient.self-service-api.groupId=receiver-id
248 -Dblueprintsprocessor.messageclient.self-service-api.clientId=default-client-id
249 -Dspring.profiles.active=dev
250 -Dblueprintsprocessor.httpPort=8080
251 -Dserver.port=55555
252
253
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400254 **Browse Working Directory to your application path** ``.../cds/ms/blueprintsprocessor/application``
JakobKriegb708ee62020-09-08 17:34:30 +0200255 **if path is not already specified correctly.**
256
JakobKrieg668466f2020-08-27 16:36:38 +0200257 **Add/replace the following in Blueprint's application-dev.properties file:**
JakobKriegf47eeee2020-08-17 21:04:35 +0200258
259 .. code-block:: java
260
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000261 blueprintsprocessor.grpcclient.remote-python.type=token-auth
262 blueprintsprocessor.grpcclient.remote-python.host=localhost
263 blueprintsprocessor.grpcclient.remote-python.port=50051
264 blueprintsprocessor.grpcclient.remote-python.token=Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
JakobKriegf47eeee2020-08-17 21:04:35 +0200265
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000266 blueprintprocessor.remoteScriptCommand.enabled=true
JakobKriegf47eeee2020-08-17 21:04:35 +0200267
268
JakobKrieg668466f2020-08-27 16:36:38 +0200269 **Run the application:**
JakobKriegf47eeee2020-08-17 21:04:35 +0200270
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000271 Select either run or debug for this Run Configuration to start the Blueprints Processor:
JakobKriegf47eeee2020-08-17 21:04:35 +0200272
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000273 |imageRunDebug|
JakobKriegf47eeee2020-08-17 21:04:35 +0200274
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000275 |imageBuildLogs|
JakobKriegf47eeee2020-08-17 21:04:35 +0200276
JakobKrieg668466f2020-08-27 16:36:38 +0200277 .. tab:: Visual Studio Code
JakobKriegf47eeee2020-08-17 21:04:35 +0200278
JakobKrieg668466f2020-08-27 16:36:38 +0200279 .. tabs::
JakobKriegf47eeee2020-08-17 21:04:35 +0200280
JakobKrieg668466f2020-08-27 16:36:38 +0200281 .. group-tab:: Latest
JakobKriegf47eeee2020-08-17 21:04:35 +0200282
JakobKrieg668466f2020-08-27 16:36:38 +0200283 * **Step #1** - Make sure your installation of Visual Studio Code is up to date. This guide was writen using version 1.48
284 * **Step #2** - Install `Kotlin extension from the Visual Studio Code Marketplace <https://marketplace.visualstudio.com/items?itemName=fwcd.kotlin>`_
285 * **Step #3** - On the top menu click *Run | Open Configurations*
JakobKriegf47eeee2020-08-17 21:04:35 +0200286
JakobKrieg668466f2020-08-27 16:36:38 +0200287 .. 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.
288 Please watch the bottom bar in Visual Studio Code for messages about things getting installed.
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000289
JakobKrieg668466f2020-08-27 16:36:38 +0200290 * **Step #4** - add configuration shown below to your configurations list.
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000291
JakobKrieg668466f2020-08-27 16:36:38 +0200292 .. code-block:: json
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000293
JakobKrieg668466f2020-08-27 16:36:38 +0200294 {
Singal, Kapil (ks220y)51e7c122020-09-25 17:22:54 -0400295 "type": "kotlin",
296 "request": "launch",
297 "name": "Blueprint Processor",
298 "projectRoot": "${workspaceFolder}/ms/blueprintsprocessor/application",
299 "mainClass": "-Dspring.profiles.active=dev org.onap.ccsdk.cds.blueprintsprocessor.BlueprintProcessorApplicationKt"
JakobKrieg668466f2020-08-27 16:36:38 +0200300 }
301
302 .. warning:: The `projectRoot` path assumes that you created your Workspace in the main CDS repository folder. If not - please change the path accordingly
303
304 .. 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.
305 If you have a cleaner idea how to solve this - please let us know.
306
307 **Add/replace the following in Blueprint's application-dev.properties file:**
308
309 .. code-block:: java
310
311 blueprintsprocessor.grpcclient.remote-python.type=token-auth
312 blueprintsprocessor.grpcclient.remote-python.host=localhost
313 blueprintsprocessor.grpcclient.remote-python.port=50051
314 blueprintsprocessor.grpcclient.remote-python.token=Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
315
316 blueprintprocessor.remoteScriptCommand.enabled=true
317
318 **Currently the following entries need to be added in VSC too:**
319
320 .. code-block:: java
321
322 logging.level.web=DEBUG
323 logging.level.org.springframework.web: DEBUG
324
325 #Encrypted username and password for health check service
326 endpoints.user.name=eHbVUbJAj4AG2522cSbrOQ==
327 endpoints.user.password=eHbVUbJAj4AG2522cSbrOQ==
328
329 #BaseUrls for health check blueprint processor services
330 blueprintprocessor.healthcheck.baseUrl=http://localhost:8080/
331 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]
332
333 #BaseUrls for health check Cds Listener services
334 cdslistener.healthcheck.baseUrl=http://cds-sdc-listener:8080/
335 cdslistener.healthcheck.mapping-service-name-with-service-link=[SDC Listener service,/api/v1/sdclistener/healthcheck]
336
337 #Actuator properties
338 management.endpoints.web.exposure.include=*
339 management.endpoint.health.show-details=always
340 management.info.git.mode=full
341
342 In VSC the properties are read from target folder, thats why the following maven command needs to be rerun:
343
344 .. code-block:: bash
345
346 mvn clean install -DskipTests=true -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dadditionalparam=-Xdoclint:none
347
348 Click Run in Menu bar.
349
350 |imageLogsVSC|
JakobKriegf47eeee2020-08-17 21:04:35 +0200351
352
353Testing the application
Singal, Kapil (ks220y)51e7c122020-09-25 17:22:54 -0400354~~~~~~~~~~~~~~~~~~~~~~~
JakobKriegf47eeee2020-08-17 21:04:35 +0200355
356There are two main features of the Blueprints Processor that can be of interest of a developer:
JakobKriegb708ee62020-09-08 17:34:30 +0200357blueprint publish and blueprint process.
JakobKriegf47eeee2020-08-17 21:04:35 +0200358
JakobKriegb708ee62020-09-08 17:34:30 +0200359To upload custom blueprints, the endpoint ``api/v1/execution-service/publish`` is used.
JakobKriegf47eeee2020-08-17 21:04:35 +0200360
361To process, the endpoint is ``api/v1/execution-service/process``.
362
363Postman is a software that can be used to send these request, and an example of
364them is present on https://www.getpostman.com/collections/b99863b0cde7565a32fc.
365
JakobKriegb708ee62020-09-08 17:34:30 +0200366A detailed description of the usage of different APIs of CDS will follow.
JakobKriegf47eeee2020-08-17 21:04:35 +0200367
Singal, Kapil (ks220y)51e7c122020-09-25 17:22:54 -0400368
JakobKriegf47eeee2020-08-17 21:04:35 +0200369Possible Fixes
Singal, Kapil (ks220y)51e7c122020-09-25 17:22:54 -0400370~~~~~~~~~~~~~~
JakobKriegf47eeee2020-08-17 21:04:35 +0200371
372Imported packages or annotiations are not found, Run Config not available?
373*****************************************************************************
374
3751. Rebuild with ``maven install ...`` (see above)
3762. Potentially change Maven home directory in Settings
3773. Maven reimport in IDE
378
379Compilation error?
Singal, Kapil (ks220y)51e7c122020-09-25 17:22:54 -0400380*******************
JakobKriegf47eeee2020-08-17 21:04:35 +0200381
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400382* Change Java Version to 11
JakobKriegf47eeee2020-08-17 21:04:35 +0200383
JakobKrieg668466f2020-08-27 16:36:38 +0200384
385.. image alignment inside tabs doesn't work
386
JakobKriegf47eeee2020-08-17 21:04:35 +0200387.. |imageRunConfigJava| image:: media/run_config_java.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400388 :width: 500pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200389 :align: middle
390
391.. |imageRunConfigKt| image:: media/run_config_kt.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400392 :width: 500pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200393 :align: middle
394
395.. |imageCreateRunConfigJava| image:: media/create_run_config_java.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400396 :width: 500pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200397 :align: middle
398
399.. |imageCreateRunConfigKt| image:: media/create_run_config_kt.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400400 :width: 500pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200401 :align: middle
402
403.. |imageImportProject| image:: media/import_project.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400404 :width: 300pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200405 :align: middle
406
407.. |imageReimportMaven| image:: media/reimport_maven.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400408 :width: 400pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200409 :align: middle
410
411.. |imageRunDebug| image:: media/run_debug.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400412 :width: 500pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200413 :align: middle
414
JakobKriegf47eeee2020-08-17 21:04:35 +0200415.. |imageBuildLogs| image:: media/build_logs.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400416 :width: 500pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200417 :align: middle
JakobKrieg668466f2020-08-27 16:36:38 +0200418
419.. |imageLogsVSC| image:: media/vsc_logs.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400420 :width: 500pt
JakobKrieg668466f2020-08-27 16:36:38 +0200421 :align: middle