d0f004b58a46df8fe974be823f5b0bfa17a47a5a
[clamp.git] / docs / index.rst
1 .. 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
5 CLAMP - Closed Loop Automation Management Platform
6 ==================================================
7 .. High level architecture, design, and packaging information for release planning and delivery.
8
9 CLAMP 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.
10
11 It 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.
12
13 The 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
15 At 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
17
18
19 .. toctree::
20     :maxdepth: 1
21
22
23 Delivery
24 --------
25 CLAMP component is composed of a UI layer and a BackEND layer and packaged into a single container.
26 CLAMP also requires a database instance with 2 DB, it uses MariaDB.
27
28 .. blockdiag::
29
30
31    blockdiag layers {
32    orientation = portrait
33    CLAMP_UI -> CLAMP_BACKEND;
34    CLAMP_BACKEND -> CAMUNDADB;
35    CLAMP_BACKEND -> CLDSDB;
36    group l1 {
37    color = blue;
38    label = "CLAMP container";
39    CLAMP_UI; CLAMP_BACKEND;
40    }
41    group l3 {
42    color = orange;
43    label = "MariaDB container";
44    CAMUNDADB; CLDSDB;
45    }
46    }
47
48
49 Logging & Diagnostic Information
50 --------------------------------
51 Clamp uses logback framework to generate logs. The logback.xml file cand be found under the [src/main/resources/ folder](src/main/resources).
52
53 With 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
55
56
57 Installation
58 ------------
59 A [docker-compose example file](extra/docker/clamp/docker-compose.yml) can be found under the [extra/docker/clamp/ folder](extra/docker/).
60
61 Once 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).
62
63 Configuration
64 -------------
65 .. Where are they provided?
66 .. What are parameters and values?
67
68
69 Currently, 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
74 There 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
87 OR
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
113 Administration
114 --------------
115
116 A user can access CLAMP UI at the following URL : http://localhost:8080/designer/index.html.
117
118 Default username : admin
119 Default password : password
120
121
122 Human Interfaces
123 ----------------
124 .. Basic info on the interface type, ports/protocols provided over, etc.
125
126 User Interface (CLAMP Designer) - serve to configure control loop
127
128 HealthCheck API - serve to verify CLAMP status