aboutsummaryrefslogtreecommitdiffstats
path: root/plans/dcaegen2-pmmapper/pmmapper/dmaapbc.sh
blob: 1430258999d178c32262f3425b8d11b870d7b2d8 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/bin/bash
# $1 is the IP address of the buscontroller

# INITIALIZE: dmaap object
echo $'\nInitializing /dmaap endpoint'
JSON=/tmp/dmaap.json
cat << EOF > $JSON
{
"version": "1",
"topicNsRoot": "topic.org.onap.dmaap",
"drProvUrl": "https://dmaap-dr-prov:8443",
"dmaapName": "mr",
"bridgeAdminTopic": "MM_AGENT_PROV"

}
EOF
curl -v -X POST -d @${JSON} -H "Content-Type: application/json" http://$1:8080/webapi/dmaap

# INITIALIZE: dcaeLocation object
echo $'\nInitializing /dcaeLocations endpoint'
JSON=/tmp/dcaeLocation.json
cat << EOF > $JSON
{
"dcaeLocationName": "csit-pmmapper",
"dcaeLayer": "central-cloud",
"clli": "CSIT",
"zone": "zoneA"
}
EOF
curl -v -X POST -d @${JSON} -H "Content-Type: application/json" http://$1:8080/webapi/dcaeLocations

# INITIALIZE: MR object in 1 site
echo $'\nInitializing /mr_clusters endpoint'
DMAAP=$(docker ps -a -q --filter="name=dmaap_1")
DMAAP_MR_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $DMAAP)
JSON=/tmp/mr.json
cat << EOF > $JSON
{
"dcaeLocationName": "csit-pmmapper",
"fqdn": "${DMAAP_MR_IP}",
"topicProtocol" : "http",
"topicPort": "3904"
}
EOF
curl -v -X POST -d @${JSON} -H "Content-Type: application/json" http://$1:8080/webapi/mr_clusters

# CREATING: DR feed
echo $'\nInitializing /feeds endpoint'
JSON=/tmp/feed.json
cat << EOF > $JSON
{
"feedName":"pmmapper",
"feedVersion": "1",
"feedDescription":"PM Mapper Feed",
"owner":"bulkpm",
"asprClassification": "unclassified",
"pubs": [
        {
            "dcaeLocationName": "csit-pmmapper",
            "feedId": "1",
            "lastMod": "2015-01-01T15:00:00.000Z",
            "pubId": "10",
            "status": "EMPTY",
            "username": "pmmapper",
            "userpwd": "pmmapper"
        }
        ]
}
EOF
curl -v -X POST -d @${JSON} -H "Content-Type: application/json" http://$1:8080/webapi/feeds

# CREATING: MR Topic
echo $'\nInitializing /topic endpoint'
JSON=/tmp/topic.json
cat << EOF > $JSON
{
"topicName":"test1",
"topicDescription":"PM Mapper - VES Event",
"owner":"pmmapper"
}
EOF
curl -v -X POST -d @${JSON} -H "Content-Type: application/json" http://$1:8080/webapi/topics

# CREATING: MR Client
echo $'\nInitializing /mr_clients endpoint'
JSON=/tmp/mrclients.json
cat << EOF > $JSON
{
"fqtn": "topic.org.onap.dmaap.mr.test1",
"dcaeLocationName": "csit-pmmapper",
"clientRole": "org.onap.dmaap.mr.topic",
"action": [ "pub", "view" ]
}
EOF
curl -v -X POST -d @${JSON} -H "Content-Type: application/json" http://$1:8080/webapi/mr_clients
sleep 5