aboutsummaryrefslogtreecommitdiffstats
path: root/INFO.yaml
blob: 345217e0f5aaeed175eb98f2a931cd0cc0738f5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
project: 'clamp'
project_creation_date: '2017-06-15'
lifecycle_state: 'Incubation'
project_lead: &onap_releng_ptl
    name: 'Gervais-Martial Ngueko'
    email: 'gn422w@intl.att.com'
    id: 'osgn422w'
    company: 'ATT'
    timezone: 'Belgium/Namur'
primary_contact: *onap_releng_ptl
issue_tracking:
    type: 'jira'
    url: 'https://jira.onap.org/projects/CLAMP'
    key: 'CLAMP'
meetings:
    - type: 'zoom'
        agenda: 'https://wiki.onap.org/pages/viewpage.action?pageId=6593117'
        url: 'https://wiki.onap.org/pages/viewpage.action?pageId=6593117'
        server: 'n/a'
        channel: 'n/a'
        repeats: 'weekly'
        time: '13:00 UTC'
committers:
    - name: 'Christophe Closset'
        email: 'cc697w@intl.att.com'
        company: 'ATT'
        id: 'ChrisC'
        timezone: 'Belgium/Namur'
    - name: 'Eddy Hautot'
        email: 'eh552t@intl.att.com'
        company: 'ATT'
        id: 'ehautot'
        timezone: 'Belgium/Namur'
    - name: 'Pierre Close'
        email: 'pc457b@intl.att.com'
        company: 'ATT'
        id: 'piclose'
        timezone: 'Belgium/Namur'
    - name: 'Sébastien Determe'
        email: 'sd378r@intl.att.com'
        company: 'ATT'
        id: 'sebdet'
        timezone: 'Belgium/Namur'
    - name: 'Xinyuan Wang'
        email: 'wang.xinyuan1@zte.com.cn'
        company: 'ZTE'
        id: 'Xinyuan'
        timezone: 'Belgium/Namur'
tsc:
    approval: 'https://lists.onap.org/pipermail/onap-tsc'
">### Logs Clamp uses logback framework to generate logs. The logback.xml file cand be found under the [src/main/resources/ folder](src/main/resources). 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. ### Api You can see the swagger definition for the jaxrs apis at `/restservices/clds/v1/openapi.json` ## Clamp Credentials Credentials should be specified in `src/main/resources/clds/clds-users.json`. You might specify you own credential file by redefining the `clamp.config.files.cldsUsers` in `application.properties`. Passwords should be hashed using Bcrypt : ``` # pip3 install bcrypt # if you don't have the bcrypt python lib installed, should be done once. # python3 -c 'import bcrypt; print(bcrypt.hashpw("password".encode(), bcrypt.gensalt(rounds=10, prefix=b"2a")))' ``` Default credentials are admin/password and cs0008/password.