summaryrefslogtreecommitdiffstats
path: root/doc/user/keystoneproxy/multivimproxy.txt
blob: ecfabb917f51a149d87a0d3c968876821d060d9f (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
prepare environment:
system: centos7-64bit, 8GB RAM, 4 CPU

docker images:
docker pull onapmulticloud/common-services-msb
docker pull onapmulticloud/common-services-extsys
docker pull onapmulticloud/common-services-drivermanager
docker pull onapmulticloud/gso-service-gateway
docker pull onapmulticloud/gso-service-manager
docker pull onapmulticloud/gso-gui-portal

# login onap and pull those two images
docker login -u docker -p docker nexus3.onap.org:10001
docker pull nexus3.onap.org:10001/onapmulticloud/multivim-broker:r1
docker pull nexus3.onap.org:10001/onapmulticloud/multivim-vio-driver:r1


run msb docker server

docker run -t --name i-msb -p 80:80 onapmulticloud/common-services-msb

Run other docker server:
   Assign the host ip to MSB_ADDR. If server cannot connect to msb server, please check iptables rule on host may block this connection.

docker run -t -e MSB_ADDR=$HOST_IP:80 onapmulticloud/gso-service-gateway
docker run -t -e MSB_ADDR=$HOST_IP:80 onapmulticloud/common-services-extsys
docker run -t -e MSB_ADDR=$HOST_IP:80 onapmulticloud/common-services-drivermanager
docker run -t -e MSB_ADDR=$HOST_IP:80 onapmulticloud/gso-gui-portal
docker run -t -e MSB_ADDR=$HOST_IP:80 onapmulticloud/gso-service-manage
docker run -t --name multivim-driver-vio-test -e MSB_ADDR=$HOST_IP:80   nexus3.onap.org:10001/onapmulticloud/multivim-vio-driver:r1
docker run -t --name multivim-broker-test -e MSB_ADDR= $HOST_IP:80    nexus3.onap.org:10001/onapmulticloud/multivim-broker:r1


Login Dashboard

Access: http://$HOST_IP/openoui/microservices/index.html

Register your openstack enviroment in extsys server
Choose  'extsys' —>  'vim Managent' —> 'post vim'


Request body Example:
{
  "id": "",
  "name": "vmware-vio",
  "vendor": "vmware",
  "version": "4.0",
  "description": "test",
  "type": "vmware",       # It must be ‘vmware’ so will use multvim-proxy service to execute requests
  "createTime": "",
  "category": "",
  "url": "https://10.154.2.225:5000/v3",     # keystone auth_url
  "userName": "admin",
  "password": "vmware",
  "domain": "default",
  "tenant": "admin"
}

response example:

Response:
{
    "name": "vmware-vio",
    "vendor": "vmware",
    "version": "4.0",
    "description": "test",
    "type": "vmware",
    "createTime": "2017-08-14 21:28:05",
    "vimId": "a5b17aaa-a142-4a50-b425-f1e6eab7136d",   # vimid
    "userName": "admin",
    "password": "vmware",
    "domain": "default",
    "tenant": "admin"
}



2 Testing Examples

2.1  Get auth token

you need to input <vimid> in url path.

curl -X  POST   -d @test.json  -H 'Content-Type:application/json'   http://$HOST_IP/api/multivim/v1/<vimid>/identity/auth/tokens

test.json content example:

{
	"auth":
	{
		"scope": {"project": {"id": “<project-id>”}},
		"identity":
		{
			"password": {"user": {"domain": {"name": “<doman-name>”}, "password": “<user-password>”, "name": “<user-name>”}}, "methods": ["password"]
		}
	}
}


Response:
There are a large amounts of data including service endpoint, user information, etc.  For our testing  We  take nova and identity service endpoint address and auth token which is in response header named “X-Subject-Token”.

Identity endpoint:
	http://$HOST_IP/api/multivim-vio/v1/<vimid>/identity

Nova endpoint:
	http://$HOST_IP/api/multivim-vio/v1/<vimid>/compute/<user-tenantid>


2.2 List projects

Use identity’s endpoint:  http://$HOST_IP/api/multivim-vio/v1/<vimid>/identity/

curl -X GET   -H 'X-Auth-Token:<token>'  http://$HOST_IP/api/multivim-vio/v1/<vimid>/identity/projects


2.3 Get os Hypervisor

Use nova’s endpoint:  http://$HOST_IP/api/multivim-vio/v1/<vimid>/nova/<user-tenantid>


curl -X GET   -H 'X-Auth-Token:<token>'   http://$HOST_IP/api/multivim-vio/v1/<vimid>/nova/<tenantid>/os-hypervisors/detail


2.4  List instance of  user’s project

curl -X GET   -H 'X-Auth-Token:<token>'    http://$HOST_IP/api/multivim-vio/v1/<vimid>/nova/<tenantid>/servers


2.5  Show instance detail

you need to input <server-id> in url path.

curl -X GET   -H 'X-Auth-Token:<token>'    http://$HOST_IP/api/multivim-vio/v1/vimid/nova/tenantid/servers/<server-id>


2.6 Shutdown instance

you need to input <server-id> in url path

curl -X POST -d '{"os-stop":null}' -H 'X-Auth-Token:<token>' -H 'Content-Type:application/json'  http://$HOST_IP/api/multivim-vio/v1/<vimid>/nova/<tenantid>/servers/<server-id>/action


2.7  Start instance

you need to input <server-id> in url path

curl -X POST -d '{"os-start":null}' -H 'X-Auth-Token:<token>' -H 'Content-Type:application/json'  http://$HOST_IP/api/multivim-vio/v1/<vimid>/nova/<tenantid>/servers/<server-id>/action


2.8  Suspend instance

you need to input <server-id> in url path

curl -X POST -d '{"suspend":null}' -H 'X-Auth-Token:<token>' -H 'Content-Type:application/json'  http://$HOST_IP/api/multivim-vio/v1/<vimid>/nova/<tenantid>/servers/<server-id>/action


2.9 Resume  instance

you need to input <server-id> in url path

curl -X POST -d '{"resume":null}' -H 'X-Auth-Token:<token>' -H 'Content-Type:application/json'  http://$HOST_IP/api/multivim-vio/v1/<vimid>/nova/<tenantid>/servers/<server-id>/action


2.10  Pause instance

you need to input <server-id> in url path

curl -X POST -d '{"pause":null}' -H 'X-Auth-Token:<token>' -H 'Content-Type:application/json'  http://$HOST_IP/api/multivim-vio/v1/<vimid>/nova/<tenantid>/servers/<server-id>/action



2.11 Unpasue instance

you need to input <server-id> in url path

curl -X POST -d '{"unpause":null}' -H 'X-Auth-Token:<token> -H 'Content-Type:application/json'  http://$HOST_IP/api/multivim-vio/v1/<vimid>/nova/<tenantid>/servers/<server-id>/action


2.12 Reboot instance

you need to input <server-id> in url path

curl -X POST -d '{"reboot":{"type":"HARD"}}' -H 'X-Auth-Token:<token> -H 'Content-Type:application/json'  http://$HOST_IP/api/multivim-vio/v1/<vimid>/nova/<tenantid>/servers/<server-id>/action