blob: d0f004b58a46df8fe974be823f5b0bfa17a47a5a [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
3.. Copyright © 2017 AT&T Intellectual Property. All rights reserved.
4
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
ChrisCfac52642017-09-13 08:23:34 -07009CLAMP is a platform for designing and managing control loops. It is used to design a closed loop, configure it with specific parameters for a particular network service, then deploying and undeploying it. Once deployed, the user can also update the loop with new parameters during runtime, as well as suspending and restarting it.
ChrisCfb622922017-09-05 07:36:32 -070010
ChrisCfac52642017-09-13 08:23:34 -070011It interacts with other systems to deploy and execute the closed loop. For example, it pushes the control loop design to the SDC catalog, associating it with the VF resource. It requests from DCAE the instantiation of microservices to manage the closed loop flow. Further, it creates and updates multiple policies in the Policy Engine that define the closed loop flow.
ChrisCfb622922017-09-05 07:36:32 -070012
ChrisCfac52642017-09-13 08:23:34 -070013The ONAP CLAMP platform abstracts the details of these systems under the concept of a control loop model. The design of a control loop and its management is represented by a workflow in which all relevant system interactions take place. This is essential for a self-service model of creating and managing control loops, where no low-level user interaction with other components is required.
14
15At a higher level, CLAMP is about supporting and managing the broad operational life cycle of VNFs/VMs and ultimately ONAP components itself. It will offer the ability to design, test, deploy and update control loop automation - both closed and open. Automating these functions would represent a significant saving on operational costs compared to traditional methods.
16
ChrisCfb622922017-09-05 07:36:32 -070017
18
19.. toctree::
ChrisCfac52642017-09-13 08:23:34 -070020 :maxdepth: 1
ChrisCfb622922017-09-05 07:36:32 -070021
22
23Delivery
24--------
ChrisCfac52642017-09-13 08:23:34 -070025CLAMP component is composed of a UI layer and a BackEND layer and packaged into a single container.
26CLAMP also requires a database instance with 2 DB, it uses MariaDB.
ChrisCfb622922017-09-05 07:36:32 -070027
28.. blockdiag::
29
30
31 blockdiag layers {
32 orientation = portrait
ChrisCfac52642017-09-13 08:23:34 -070033 CLAMP_UI -> CLAMP_BACKEND;
34 CLAMP_BACKEND -> CAMUNDADB;
35 CLAMP_BACKEND -> CLDSDB;
ChrisCfb622922017-09-05 07:36:32 -070036 group l1 {
ChrisCfac52642017-09-13 08:23:34 -070037 color = blue;
38 label = "CLAMP container";
39 CLAMP_UI; CLAMP_BACKEND;
40 }
ChrisCfb622922017-09-05 07:36:32 -070041 group l3 {
ChrisCfac52642017-09-13 08:23:34 -070042 color = orange;
43 label = "MariaDB container";
44 CAMUNDADB; CLDSDB;
45 }
ChrisCfb622922017-09-05 07:36:32 -070046 }
47
48
49Logging & Diagnostic Information
50--------------------------------
ChrisCfac52642017-09-13 08:23:34 -070051Clamp uses logback framework to generate logs. The logback.xml file cand be found under the [src/main/resources/ folder](src/main/resources).
52
53With 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.
54
ChrisCfb622922017-09-05 07:36:32 -070055
56
57Installation
58------------
ChrisCfac52642017-09-13 08:23:34 -070059A [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 -070060
ChrisCfac52642017-09-13 08:23:34 -070061Once the image has been built and is available locally, you can use the `docker-compose up` command to deploy a prepopullated 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 -070062
63Configuration
64-------------
ChrisCfac52642017-09-13 08:23:34 -070065.. Where are they provided?
66.. What are parameters and values?
ChrisCfb622922017-09-05 07:36:32 -070067
68
ChrisCfac52642017-09-13 08:23:34 -070069Currently, 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.
70
71.. TODO detail config parameters and the usage
72
73
74There are two needed datasource for Clamp. By default, both 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 :
75
76.. code-block:: json
77
78 {
79 "spring.datasource.camunda.url": "jdbc:mariadb://anotherDB.onap.org:3306/camundabpm?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true",
80 "spring.datasource.camunda.username": "admin",
81 "spring.datasource.camunda.password": "password",
82 "spring.datasource.cldsdb.url": "jdbc:mariadb://anotherDB.onap.org:3306/cldsdb4?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true",
83 "spring.datasource.cldsdb.username": "admin",
84 "spring.datasource.cldsdb.password": "password"
85 }
86
87OR
88
89.. code-block:: json
90
91 {
92 "spring":
93 {
94 "datasource":
95 {
96 "camunda":
97 {
98 "url": "jdbc:mariadb://anotherDB.onap.org:3306/camundabpm?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true",
99 "username": "admin",
100 "password": "password"
101 },
102
103 "cldsdb":
104 {
105 "url": "jdbc:mariadb://anotherDB.onap.org:3306/cldsdb4?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true",
106 "username": "admin",
107 "password": "password"
108 }
109 }
110 }
111 }
112
ChrisCfb622922017-09-05 07:36:32 -0700113Administration
114--------------
115
ChrisCfac52642017-09-13 08:23:34 -0700116A user can access CLAMP UI at the following URL : http://localhost:8080/designer/index.html.
117
118Default username : admin
119Default password : password
ChrisCfb622922017-09-05 07:36:32 -0700120
121
122Human Interfaces
123----------------
ChrisCfac52642017-09-13 08:23:34 -0700124.. Basic info on the interface type, ports/protocols provided over, etc.
125
126User Interface (CLAMP Designer) - serve to configure control loop
127
128HealthCheck API - serve to verify CLAMP status