aboutsummaryrefslogtreecommitdiffstats
path: root/plans/usecases/5G-bulkpm/README.txt
blob: 1d0fc41587c671c83ef37a9a2bdbfd7181be0f70 (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
###################################################################################################################
By executing the below commands it will change the CSIT test from executing on a docker envirnoment to an ONAP one.
###################################################################################################################

1) Login to an ONAP instance,switch user and verify that the command kubectl executes before proceeding .
# sudo -s
# kubectl get svc -n onap| grep dcae

2) Clone the csit repositry 
# git clone https://gerrit.onap.org/r/integration/csit

3) Install docker-compose 
# sudo apt-get update
# sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
# sudo chmod +x /usr/local/bin/docker-compose
# docker-compose --version    

4)  Install the packages required for the RobotFramework.		
# apt install python-pip
# sudo apt install python-pip virtualenv unzip sshuttle netcat libffi-dev libssl-dev
# sudo pip install robotframework
# sudo pip install -U requests
# sudo pip install -U robotframework-requests

5) Expose the Ves-collector
# kubectl expose svc dcae-ves-collector --type=LoadBalancer --name=vesc -n onap
	service "vesc" exposed

6) Verify the Ves-collector is expose
# kubectl get svc -n onap | grep vesc
	vesc	LoadBalancer   10.43.203.47    10.209.63.55	8080:31835/TCP		1m

7) Modify the file setup.sh and make the below change
# cd csit
# vi plans/usecases/5G-bulkpm/setup.sh 
CSIT=TRUE
 to
CSIT=FALSE

8) Excute the Bulk PM e2e csit.
# ./run-csit.sh plans/usecases/5G-bulkpm/


--> Trobleshooting 
If the Test case "Verify Default Feed And File Consumer Subscription On Datarouter" is hanging, quit the test and execute the below
Get the DR-PROV IP address  
# kubectl -n onap -o=wide get pods | grep dmaap-dr-prov | awk '{print $6}'
 10.42.123.76
Make sure there are no feeds
# curl -k https://10.42.123.76:8443/internal/prov

If there is feeds delete them
curl -X DELETE -H "Content-Type:application/vnd.att-dr.subscription" -H "X-ATT-DR-ON-BEHALF-OF:dradmin" -k https://10.42.123.76:8443/subs/XX

Where XX is the number of the feeds in the previous command.