blob: 43fb315f6b87414d1494b5971533ed104c0de452 [file] [log] [blame]
ChrisCfb622922017-09-05 07:36:32 -07001.. This work is licensed under a Creative Commons Attribution 4.0 International License.
2.. http://creativecommons.org/licenses/by/4.0
ChrisC8ec1b912018-03-27 03:12:59 -07003.. Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
ChrisCfb622922017-09-05 07:36:32 -07004
ChrisCfac52642017-09-13 08:23:34 -07005CLAMP - Closed Loop Automation Management Platform
6==================================================
ChrisCfb622922017-09-05 07:36:32 -07007.. High level architecture, design, and packaging information for release planning and delivery.
8
Rich Bennettc58f8462017-10-24 08:26:42 -04009.. include:: architecture.rst
ChrisCfb622922017-09-05 07:36:32 -070010
martial99333152017-10-11 13:49:07 +020011
12Offered APIs
13------------
xg353y2aad6d62018-05-18 17:59:06 +020014The list of APIs that CLAMP has offered could be find in the following table:
Rich Bennettc58f8462017-10-24 08:26:42 -040015
xg353y2aad6d62018-05-18 17:59:06 +020016.. |pdf-icon| image:: images/pdf.png
17 :width: 40px
Rich Bennettc58f8462017-10-24 08:26:42 -040018
xg353y2aad6d62018-05-18 17:59:06 +020019.. |swagger-icon| image:: images/swagger.png
20 :width: 40px
Rich Bennettc58f8462017-10-24 08:26:42 -040021
xg353y2aad6d62018-05-18 17:59:06 +020022.. |html-icon| image:: images/html.png
23 :width: 40px
Rich Bennettc58f8462017-10-24 08:26:42 -040024
xg353y2aad6d62018-05-18 17:59:06 +020025.. csv-table::
26 :header: "|Swagger-icon|", "|html-icon|", "|pdf-icon|"
27 :widths: 60,60,60
28
29 "swagger json file", "html doc", "pdf doc"
30 ":download:`link <swagger/swagger.json>`", ":download:`link <swagger/swagger.html>`", ":download:`link <swagger/swagger.pdf>`"
martial99333152017-10-11 13:49:07 +020031
32
33Consumed APIs
34-------------
35CLAMP uses the API's exposed by the following ONAP components:
Eric Debeauee81e8d2017-11-06 20:45:04 +000036
37- SDC : REST based interface exposed by the SDC, Distribution of service to DCAE
38- DCAE: REST based interface exposed by DCAE, Common Controller Framework, DCAE microservices onboarded (TCA, Stringmatch, Holmes (optional))
39- Policy: REST based interface (the Policy team provide a "jar" to handle the communication), both XACML and Drools PDP, APIs to App-C/VF-C/SDN-C
ChrisCfb622922017-09-05 07:36:32 -070040
41
42Delivery
43--------
sebdet4d1e6b92018-10-23 16:54:02 +020044CLAMP component is composed of a UI layer and a backend layer and packaged into a single container (single jar).
ChrisC8ec1b912018-03-27 03:12:59 -070045CLAMP also requires a database instance with 1 DB, it uses MariaDB.
46CLAMP also uses an ELK stack (Elastic Search, Logstash and Kibana) for the Dashboard.
ChrisCfb622922017-09-05 07:36:32 -070047
48.. blockdiag::
49
50
51 blockdiag layers {
ChrisC8ec1b912018-03-27 03:12:59 -070052 orientation = portrait
53 CLAMP_UI -> CLAMP_BACKEND;
54 CLAMP_BACKEND -> CLDSDB;
55 CLAMP_KIBANA -> CLAMP_ELASTICSEARCH;
56 CLAMP_LOGSTASH -> CLAMP_ELASTICSEARCH;
57 group l1 {
58 color = blue;
59 label = "CLAMP container";
60 CLAMP_UI; CLAMP_BACKEND;
61 }
62 group l3 {
63 color = orange;
64 label = "MariaDB container";
65 CLDSDB;
66 }
67 group l4 {
68 color = green;
69 label = "E_Search container";
70 CLAMP_ELASTICSEARCH;
71 }
72 group l5 {
73 color = green;
74 label = "Kibana container";
75 CLAMP_KIBANA;
76 }
77 group l6 {
78 color = green;
79 label = "LogStash container";
80 CLAMP_LOGSTASH;
81 }
ChrisCfac52642017-09-13 08:23:34 -070082 }
ChrisCfb622922017-09-05 07:36:32 -070083
84Logging & Diagnostic Information
85--------------------------------
ChrisC8ec1b912018-03-27 03:12:59 -070086CLAMP uses logback framework to generate logs. The logback.xml file can be found under the [src/main/resources/ folder](src/main/resources).
ChrisCfac52642017-09-13 08:23:34 -070087
Eric Debeau8ecddd32017-10-20 20:21:57 +000088With the default log settings, all logs will be generated into console and into root.log file under the CLAMP root folder. The root.log file is not allowed to be appended, thus restarting the CLAMP will result in cleaning of the old log files.
ChrisCfac52642017-09-13 08:23:34 -070089
ChrisCfb622922017-09-05 07:36:32 -070090
Gildas Lanilis53f49732017-11-22 11:09:27 -080091.. _index-clamp-installation:
ChrisCfb622922017-09-05 07:36:32 -070092
93Installation
94------------
ChrisCfac52642017-09-13 08:23:34 -070095A [docker-compose example file](extra/docker/clamp/docker-compose.yml) can be found under the [extra/docker/clamp/ folder](extra/docker/).
ChrisCfb622922017-09-05 07:36:32 -070096
sebdet4d1e6b92018-10-23 16:54:02 +020097Once the image has been built and is available locally, you can use the `docker-compose up` command to deploy a pre-populated database and a CLAMP instance available on [http://localhost:8080/designer/index.html](http://localhost:8080/designer/index.html).
ChrisCfb622922017-09-05 07:36:32 -070098
99Configuration
100-------------
ChrisCfac52642017-09-13 08:23:34 -0700101.. Where are they provided?
102.. What are parameters and values?
ChrisCfb622922017-09-05 07:36:32 -0700103
104
Eric Debeau8ecddd32017-10-20 20:21:57 +0000105Currently, the CLAMP docker image can be deployed with small configuration needs. Though, you might need to make small adjustments to the configuration. As CLAMP is spring based, you can use the SPRING_APPLICATION_JSON environment variable to update its parameters.
ChrisCfac52642017-09-13 08:23:34 -0700106
107.. TODO detail config parameters and the usage
108
109
sebdet4d1e6b92018-10-23 16:54:02 +0200110There are one datasource for Clamp. By default, it will try to connect to the localhost server using the credentials available in the example SQL files. If you need to change the default database host and/or credentials, you can do it by using the following json as SPRING_APPLICATION_JSON environment variable :
ChrisCfac52642017-09-13 08:23:34 -0700111
112.. code-block:: json
113
114 {
ChrisCfac52642017-09-13 08:23:34 -0700115 "spring.datasource.cldsdb.url": "jdbc:mariadb://anotherDB.onap.org:3306/cldsdb4?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true",
116 "spring.datasource.cldsdb.username": "admin",
Determe, Sebastien (sd378r)934663b2018-04-04 14:50:57 +0200117 "spring.datasource.cldsdb.password": "password",
118
119 "clamp.config.sdc.catalog.url": "https://sdchost:8443/sdc/v1/catalog/",
120 "clamp.config.sdc.hostUrl": "https://sdchost:8443/",
121 "clamp.config.sdc.serviceUrl": "https://sdchost:8443/sdc/v1/catalog/services",
122 "clamp.config.sdc.serviceUsername": "clamp",
123 "clamp.config.sdc.servicePassword": "b7acccda32b98c5bb7acccda32b98c5b05D511BD6D93626E90D18E9D24D9B78CD34C7EE8012F0A189A28763E82271E50A5D4EC10C7D93E06E0A2D27CAE66B981",
124 "clamp.config.dcae.inventory.url": "http://dcaegen2.host:8080",
sebdet4d1e6b92018-10-23 16:54:02 +0200125 "clamp.config.dcae.dispatcher.url": "http://dcaegen2.host:8188",
Determe, Sebastien (sd378r)934663b2018-04-04 14:50:57 +0200126 "clamp.config.policy.pdpUrl1": "https://policy-pdp.host:9091/pdp/ , testpdp, alpha123",
127 "clamp.config.policy.pdpUrl2": "https://policy-pdp.host:9091/pdp/ , testpdp, alpha123",
128 "clamp.config.policy.papUrl": "https://policy-pap.host:8443/pap/ , testpap, alpha123",
sebdet4d1e6b92018-10-23 16:54:02 +0200129 "clamp.config.policy.clientKey": "5CE79532B3A2CB4D132FC0C04BF916A7",
130 "clamp.config.files.sdcController":"file:/opt/clamp/config/sdc-controllers-config.json",
131 "clamp.config.cadi.aafLocateUrl": "https://aaf-locate.onap:8095",
132 "com.att.eelf.logging.path": "/opt/clamp",
133 "com.att.eelf.logging.file": "logback.xml"
ChrisCfac52642017-09-13 08:23:34 -0700134 }
135
Determe, Sebastien (sd378r)934663b2018-04-04 14:50:57 +0200136SDC-Controllers config
137----------------------
138This file is a JSON that must be specified to Spring config, here is an example:
ChrisCfac52642017-09-13 08:23:34 -0700139
140.. code-block:: json
Determe, Sebastien (sd378r)46e851e2018-04-06 11:49:18 +0200141 {
142 "sdc-connections":{
143 "sdc-controller1":{
144 "user": "clamp",
145 "consumerGroup": "consumerGroup1",
146 "consumerId": "consumerId1",
147 "environmentName": "AUTO",
148 "sdcAddress": "localhost:8443",
149 "password": "b7acccda32b98c5bb7acccda32b98c5b05D511BD6D93626E90D18E9D24D9B78CD34C7EE8012F0A189A28763E82271E50A5D4EC10C7D93E06E0A2D27CAE66B981",
150 "pollingInterval":30,
151 "pollingTimeout":30,
152 "activateServerTLSAuth":"false",
153 "keyStorePassword":"",
154 "keyStorePath":"",
155 "messageBusAddresses":["dmaaphost.com"]
156 },
157 "sdc-controller2":{
158 "user": "clamp",
159 "consumerGroup": "consumerGroup1",
160 "consumerId": "consumerId1",
161 "environmentName": "AUTO",
162 "sdcAddress": "localhost:8443",
163 "password": "b7acccda32b98c5bb7acccda32b98c5b05D511BD6D93626E90D18E9D24D9B78CD34C7EE8012F0A189A28763E82271E50A5D4EC10C7D93E06E0A2D27CAE66B981",
164 "pollingInterval":30,
165 "pollingTimeout":30,
166 "activateServerTLSAuth":"false",
167 "keyStorePassword":"",
168 "keyStorePath":"",
169 "messageBusAddresses":["dmaaphost.com"]
170 }
171 }
172 }
ChrisCfac52642017-09-13 08:23:34 -0700173
Determe, Sebastien (sd378r)934663b2018-04-04 14:50:57 +0200174Multiple controllers can be configured so that Clamp is able to receive the notifications from different SDC servers.
175Each Clamp existing in a cluster should have different consumerGroup and consumerId so that they can each consume the SDC notification.
176The environmentName is normally the Dmaap Topic used by SDC.
177If the sdcAddress is not specified or not available (connection failure) the messageBusAddresses will be used (Dmaap servers)
ChrisCfac52642017-09-13 08:23:34 -0700178
ChrisCfb622922017-09-05 07:36:32 -0700179Administration
180--------------
181
sebdet4d1e6b92018-10-23 16:54:02 +0200182A user can access CLAMP UI at the following URL : https://localhost:8443/designer/index.html.
martial99333152017-10-11 13:49:07 +0200183(in this URL 'localhost' must be replaced by the actual host where CLAMP has been installed if it is not your current localhost)
sebdet4d1e6b92018-10-23 16:54:02 +0200184For OOM, the URL is https://<host-ip>:30258/designer/index.html
Morgan Richommef391c6c2017-11-08 09:06:39 +0100185
186.. code-block:: html
sebdet4d1e6b92018-10-23 16:54:02 +0200187 - Without AAF, the credentials are
188 Default username : admin
189 Default password : password
Morgan Richommef391c6c2017-11-08 09:06:39 +0100190
sebdet4d1e6b92018-10-23 16:54:02 +0200191 - With AAF enabled, the certificate p12 must be added to the browser
192 ca path: src/main/resources/clds/aaf/org.onap.clamp.p12, password "China in the Spring"
ChrisCfb622922017-09-05 07:36:32 -0700193
ChrisCfb622922017-09-05 07:36:32 -0700194Human Interfaces
195----------------
ChrisCfac52642017-09-13 08:23:34 -0700196.. Basic info on the interface type, ports/protocols provided over, etc.
197
198User Interface (CLAMP Designer) - serve to configure control loop
martial99333152017-10-11 13:49:07 +0200199The following actions are done using the UI:
ChrisCfac52642017-09-13 08:23:34 -0700200
Rich Bennettc58f8462017-10-24 08:26:42 -0400201* Design a control loop flow by selecting a predefined template from a list
202 (a template is an orchestration chain of Micro-services, so the template
203 defines how the micro-services of the control loop are chained together)
204
205* Give value to the configuration the parameters of each micro-service of
206 the control loop
207
208* Select the service and VNF(of that service) to which the control loop
209 will be attached
210
211* Configure the operational policy(the actual operation resulting from
212 the control loop)
213
sebdet4d1e6b92018-10-23 16:54:02 +0200214* Send the “TOSCA” blueprint parameters that will be used by DCAE to start the
Rich Bennettc58f8462017-10-24 08:26:42 -0400215 control loop (The blueprint will be sent first to SDC and SDC will
216 publish it to DCAE)
217
218* Trigger the deployment of the Control loop in DCAE
219
220* Control (start/stop) the operation of the control loop in DCAE
martial99333152017-10-11 13:49:07 +0200221
Morgan Richommef391c6c2017-11-08 09:06:39 +0100222
martial99333152017-10-11 13:49:07 +0200223
Eric Debeau8ecddd32017-10-20 20:21:57 +0000224HealthCheck API - serve to verify CLAMP status (see offered API's section)
sebdet4d1e6b92018-10-23 16:54:02 +0200225* https://<host-ip>:8443/restservices/clds/v1/healthcheck
226This one does not require the certificate