Add architecture and release notes structure
[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 .. include:: architecture.rst
10
11
12 Offered APIs
13 ------------
14 CLAMP offers the following API:
15 * HealthCheck
16
17 .. line-block::
18
19    URL: http://<host>:8080/restservices/clds/v1/clds/healthcheck
20    Result: if in good health it will return OK: "HTTP/1.1 200", and the following json string content:
21
22 .. code-block:: json
23
24     {
25         "healthCheckComponent": "CLDS-APP",
26         "healthCheckStatus": "UP",
27         "description": "OK"
28     }
29
30
31 Consumed APIs
32 -------------
33 CLAMP uses the API's exposed by the following ONAP components:
34 * SDC : REST based interface exposed by the SDC, Distribution of service to DCAE
35 * DCAE: REST based interface exposed by DCAE, Common Controller Framework, DCAE microservices onboarded (TCA, Stringmatch, Holmes (optional))
36 * 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
37
38
39 Delivery
40 --------
41 CLAMP component is composed of a UI layer and a BackEnd layer and packaged into a single container.
42 CLAMP also requires a database instance with 2 DB, it uses MariaDB.
43
44 .. blockdiag::
45
46
47    blockdiag layers {
48    orientation = portrait
49    CLAMP_UI -> CLAMP_BACKEND;
50    CLAMP_BACKEND -> CAMUNDADB;
51    CLAMP_BACKEND -> CLDSDB;
52    group l1 {
53    color = blue;
54    label = "CLAMP container";
55    CLAMP_UI; CLAMP_BACKEND;
56    }
57    group l3 {
58    color = orange;
59    label = "MariaDB container";
60    CAMUNDADB; CLDSDB;
61    }
62    }
63
64
65 Logging & Diagnostic Information
66 --------------------------------
67 CLAMP uses logback framework to generate logs. The logback.xml file cand be found under the [src/main/resources/ folder](src/main/resources).
68
69 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.
70
71
72
73 Installation
74 ------------
75 A [docker-compose example file](extra/docker/clamp/docker-compose.yml) can be found under the [extra/docker/clamp/ folder](extra/docker/).
76
77 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).
78
79 Configuration
80 -------------
81 .. Where are they provided?
82 .. What are parameters and values?
83
84
85 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.
86
87 .. TODO detail config parameters and the usage
88
89
90 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 :
91
92 .. code-block:: json
93
94     {
95         "spring.datasource.camunda.url": "jdbc:mariadb://anotherDB.onap.org:3306/camundabpm?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true",
96         "spring.datasource.camunda.username": "admin",
97         "spring.datasource.camunda.password": "password",
98         "spring.datasource.cldsdb.url": "jdbc:mariadb://anotherDB.onap.org:3306/cldsdb4?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true",
99         "spring.datasource.cldsdb.username": "admin",
100         "spring.datasource.cldsdb.password": "password"
101     }
102
103 OR
104
105 .. code-block:: json
106
107     {
108         "spring":
109         {
110             "datasource":
111             {
112                 "camunda":
113                 {
114                     "url": "jdbc:mariadb://anotherDB.onap.org:3306/camundabpm?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true",
115                     "username": "admin",
116                     "password": "password"
117                 },
118
119                 "cldsdb":
120                 {
121                 "url": "jdbc:mariadb://anotherDB.onap.org:3306/cldsdb4?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true",
122                 "username": "admin",
123                 "password": "password"
124                 }
125             }
126         }
127     }
128
129 Administration
130 --------------
131
132 A user can access CLAMP UI at the following URL : http://localhost:8080/designer/index.html.
133 (in this URL 'localhost' must be replaced by the actual host where CLAMP has been installed if it is not your current localhost)
134 .. code-block::
135     Default username : admin
136     Default password : password
137
138
139 Human Interfaces
140 ----------------
141 .. Basic info on the interface type, ports/protocols provided over, etc.
142
143 User Interface (CLAMP Designer) - serve to configure control loop
144 The following actions are done using the UI:
145
146 * Design a control loop flow by selecting a predefined template from a list
147   (a template is an orchestration chain of Micro-services, so the template
148   defines how the micro-services of the control loop are chained together)
149
150 * Give value to the configuration the parameters of each micro-service of
151   the control loop
152
153 * Select the service and VNF(of that service) to which the control loop
154   will be attached
155
156 * Configure the operational policy(the actual operation resulting from
157   the control loop)
158
159 * Generate the “TOSCA” blueprint that will be used by DCAE to start the
160   control loop (The blueprint will be sent first to SDC and SDC will
161   publish it to DCAE)
162
163 * Trigger the deployment of the Control loop in DCAE
164
165 * Control (start/stop) the operation of the control loop in DCAE
166
167
168
169 HealthCheck API - serve to verify CLAMP status (see offered API's section)