misty 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/lib/misty/client.rb +0 -1
  3. data/lib/misty/http/request.rb +2 -0
  4. data/lib/misty/openstack/aodh/aodh_v2.rb +6 -1
  5. data/lib/misty/openstack/ceilometer/ceilometer_v2.rb +6 -1
  6. data/lib/misty/openstack/cinder/cinder_v1.rb +4 -0
  7. data/lib/misty/openstack/cinder/cinder_v2.rb +65 -54
  8. data/lib/misty/openstack/cinder/cinder_v3.rb +61 -8
  9. data/lib/misty/openstack/cinder/v2.rb +2 -1
  10. data/lib/misty/openstack/designate/designate_v2.rb +4 -0
  11. data/lib/misty/openstack/freezer/freezer_v1.rb +4 -0
  12. data/lib/misty/openstack/glance/glance_v1.rb +4 -0
  13. data/lib/misty/openstack/glance/glance_v2.rb +7 -0
  14. data/lib/misty/openstack/heat/heat_v1.rb +5 -0
  15. data/lib/misty/openstack/ironic/ironic_v1.rb +26 -3
  16. data/lib/misty/openstack/karbor/karbor_v1.rb +8 -1
  17. data/lib/misty/openstack/keystone/keystone_v2_0.rb +4 -0
  18. data/lib/misty/openstack/keystone/keystone_v2_0_ext.rb +5 -19
  19. data/lib/misty/openstack/keystone/keystone_v3.rb +12 -0
  20. data/lib/misty/openstack/keystone/keystone_v3_ext.rb +6 -2
  21. data/lib/misty/openstack/magnum/magnum_v1.rb +4 -0
  22. data/lib/misty/openstack/manila/manila_v2.rb +65 -26
  23. data/lib/misty/openstack/murano/murano_v1.rb +4 -0
  24. data/lib/misty/openstack/neutron/neutron_v2_0.rb +28 -9
  25. data/lib/misty/openstack/nova/nova_v2_1.rb +17 -6
  26. data/lib/misty/openstack/octavia/octavia_v2_0.rb +12 -2
  27. data/lib/misty/openstack/sahara/sahara_v1_1.rb +4 -0
  28. data/lib/misty/openstack/searchlight/searchlight_v1.rb +4 -0
  29. data/lib/misty/openstack/senlin/senlin_v1.rb +6 -1
  30. data/lib/misty/openstack/swift/swift_v1.rb +4 -0
  31. data/lib/misty/openstack/tacker/tacker_v1_0.rb +4 -0
  32. data/lib/misty/openstack/trove/trove_v1_0.rb +4 -0
  33. data/lib/misty/openstack/zaqar/zaqar_v2.rb +9 -6
  34. data/lib/misty/version.rb +1 -1
  35. data/test/integration/compute_test.rb +14 -3
  36. data/test/integration/network_test.rb +14 -2
  37. data/test/integration/orchestration_test.rb +12 -0
  38. data/test/integration/test_helper.rb +0 -11
  39. data/test/integration/vcr/compute_using_nova_v2_1.yml +255 -921
  40. data/test/integration/vcr/network_using_neutron_v2_0.yml +164 -875
  41. data/test/unit/client_test.rb +2 -2
  42. data/test/unit/openstack/APIs_test.rb +2 -3
  43. metadata +3 -3
@@ -1,4 +1,8 @@
1
1
  module Misty::Openstack::OctaviaV2_0
2
+ def tag
3
+ 'Octavia API Reference 2.0.0'
4
+ end
5
+
2
6
  def api
3
7
  {"/v2.0/lbaas/loadbalancers"=>
4
8
  {:GET=>[:list_load_balancers], :POST=>[:create_a_load_balancer]},
@@ -10,6 +14,8 @@ module Misty::Openstack::OctaviaV2_0
10
14
  {:GET=>[:get_load_balancer_statistics]},
11
15
  "/v2.0/lbaas/loadbalancers/{loadbalancer_id}/status"=>
12
16
  {:GET=>[:get_the_load_balancer_status_tree]},
17
+ "/v2.0/lbaas/loadbalancers/{loadbalancer_id}/failover"=>
18
+ {:PUT=>[:failover_a_load_balancer]},
13
19
  "/v2.0/lbaas/listeners"=>{:GET=>[:list_listeners], :POST=>[:create_listener]},
14
20
  "/v2.0/lbaas/listeners/{listener_id}"=>
15
21
  {:GET=>[:show_listener_details],
@@ -23,7 +29,9 @@ module Misty::Openstack::OctaviaV2_0
23
29
  :PUT=>[:update_a_pool],
24
30
  :DELETE=>[:remove_a_pool]},
25
31
  "/v2.0/lbaas/pools/{pool_id}/members"=>
26
- {:GET=>[:list_members], :POST=>[:create_member]},
32
+ {:GET=>[:list_members],
33
+ :POST=>[:create_member],
34
+ :PUT=>[:batch_update_members]},
27
35
  "/v2.0/lbaas/pools/{pool_id}/members/{member-id}"=>
28
36
  {:GET=>[:show_member_details]},
29
37
  "/v2.0/lbaas/pools/{pool_id}/members/{member_id}"=>
@@ -51,6 +59,8 @@ module Misty::Openstack::OctaviaV2_0
51
59
  "/v2.0/lbaas/quotas/{project_id}"=>
52
60
  {:GET=>[:show_project_quota],
53
61
  :PUT=>[:update_a_quota],
54
- :DELETE=>[:remove_a_quota]}}
62
+ :DELETE=>[:remove_a_quota]},
63
+ "/v2.0/octavia/amphorae"=>{:GET=>[:list_amphora]},
64
+ "/v2.0/octavia/amphorae/{amphora_id}"=>{:GET=>[:show_amphora_details]}}
55
65
  end
56
66
  end
@@ -1,4 +1,8 @@
1
1
  module Misty::Openstack::SaharaV1_1
2
+ def tag
3
+ 'Data Processing API Reference 8.0.0'
4
+ end
5
+
2
6
  def api
3
7
  {"/v1.1/{project_id}/cluster-templates/{cluster_template_id}"=>
4
8
  {:GET=>[:show_cluster_template_details],
@@ -1,4 +1,8 @@
1
1
  module Misty::Openstack::SearchlightV1
2
+ def tag
3
+ 'Search Service API Reference 3.0.1'
4
+ end
5
+
2
6
  def api
3
7
  {"/v1/search/plugins"=>{:GET=>[:list_plugins]},
4
8
  "/v1/search/facets"=>{:GET=>[:list_facets]},
@@ -1,8 +1,12 @@
1
1
  module Misty::Openstack::SenlinV1
2
+ def tag
3
+ 'Clustering API Reference 4.0.1'
4
+ end
5
+
2
6
  def api
3
7
  {"/"=>{:GET=>[:list_major_versions]},
4
8
  "/{version}/"=>{:GET=>[:show_details_of_an_api_version]},
5
- "/v1/build-info"=>{:GET=>[:shows_build_information]},
9
+ "/v1/build-info"=>{:GET=>[:show_build_information]},
6
10
  "/v1/profile-types"=>{:GET=>[:list_profile_types]},
7
11
  "/v1/profile-types/{profile_type}"=>{:GET=>[:show_profile_type_details]},
8
12
  "/v1/profile-types/{profile_type}/ops"=>
@@ -61,6 +65,7 @@ module Misty::Openstack::SenlinV1
61
65
  {:GET=>[:show_receiver_details],
62
66
  :PATCH=>[:update_receiver],
63
67
  :DELETE=>[:delete_receiver]},
68
+ "/v1/receivers/{receiver_id}/notify"=>{:POST=>[:notify_receiver]},
64
69
  "/v1/events"=>{:GET=>[:list_events]},
65
70
  "/v1/events/{event_id}"=>{:GET=>[:shows_event_details]},
66
71
  "/v1/webhooks/{webhook_id}/trigger"=>{:POST=>[:trigger_webhook_action]},
@@ -1,4 +1,8 @@
1
1
  module Misty::Openstack::SwiftV1
2
+ def tag
3
+ 'Object Storage API Reference 2.16.1'
4
+ end
5
+
2
6
  def api
3
7
  {"/info"=>{:GET=>[:list_activated_capabilities]},
4
8
  "/v1/{account}"=>
@@ -1,4 +1,8 @@
1
1
  module Misty::Openstack::TackerV1_0
2
+ def tag
3
+ 'NFV Orchestration API Reference 0.8.1'
4
+ end
5
+
2
6
  def api
3
7
  {"/"=>{:GET=>[:list_versions]},
4
8
  "/v1.0/extensions"=>{:GET=>[:list_extensions]},
@@ -1,4 +1,8 @@
1
1
  module Misty::Openstack::TroveV1_0
2
+ def tag
3
+ 'Database API Reference 9.0.0'
4
+ end
5
+
2
6
  def api
3
7
  {"/"=>{:GET=>[:list_versions]},
4
8
  "/v1.0"=>{:GET=>[:show_version_details]},
@@ -1,4 +1,8 @@
1
1
  module Misty::Openstack::ZaqarV2
2
+ def tag
3
+ 'Messaging Service API Reference 6.0.0'
4
+ end
5
+
2
6
  def api
3
7
  {"/"=>{:GET=>[:list_major_versions]},
4
8
  "/v2/queues"=>{:GET=>[:list_queues]},
@@ -11,13 +15,12 @@ module Misty::Openstack::ZaqarV2
11
15
  "/v2/queues/{queue_name}/share"=>{:POST=>[:pre_signed_queue]},
12
16
  "/v2/queues/{queue_name}/purge"=>{:POST=>[:purge_queue]},
13
17
  "/v2/queues/{queue_name}/messages"=>
14
- {:POST=>[:post_message], :GET=>[:list_messages]},
15
- "/v2/queues/{queue_name}/messages?ids={ids}"=>
16
- {:GET=>[:get_a_set_of_messages_by_id],
17
- :DELETE=>[:delete_a_set_of_messages_by_id]},
18
- "/v2/queues/{queue_name}/messages/{messageId}"=>
18
+ {:POST=>[:post_message],
19
+ :GET=>[:list_messages, :get_a_set_of_messages],
20
+ :DELETE=>[:delete_a_set_of_messages]},
21
+ "/v2/queues/{queue_name}/messages/{message_id}"=>
19
22
  {:GET=>[:get_a_specific_message], :DELETE=>[:delete_a_specific_message]},
20
- "/v2//queues/{queue_name}/claims"=>{:POST=>[:claim_messages]},
23
+ "/v2/queues/{queue_name}/claims"=>{:POST=>[:claim_messages]},
21
24
  "/v2/queues/{queue_name}/claims/{claim_id}"=>
22
25
  {:GET=>[:query_claim],
23
26
  :PATCH=>[:update_renew_claim],
@@ -1,3 +1,3 @@
1
1
  module Misty
2
- VERSION = '1.2.0'
2
+ VERSION = '1.3.0'
3
3
  end
@@ -1,12 +1,24 @@
1
1
  require 'test_helper'
2
2
 
3
+
3
4
  describe 'Compute Service Nova v2.1 features' do
5
+ let(:auth) do
6
+ {
7
+ :url => 'http://192.0.2.6:5000',
8
+ :user => 'admin',
9
+ :password => 'QJdEmBzzEJpfpeRY6e3TEk7TW',
10
+ :project => 'admin',
11
+ :project_domain_id => 'default',
12
+ :domain => 'default'
13
+ }
14
+ end
15
+
4
16
  it 'GET/POST/PUT/DELETE requests' do
5
17
  VCR.use_cassette 'compute using nova v2.1' do
6
18
  cloud = Misty::Cloud.new(:auth => auth, :compute => {:api_version => 'v2.1'})
7
19
 
8
20
  # POST with body data
9
- server = { 'name': 'test_create_server', 'flavorRef': '1', 'imageRef': 'c091ccf2-a4ae-4fa0-a716-defd6376b5dc', 'networks': [{'uuid': '9c6e43b6-3d1d-4106-ad45-5fc3f5e371ee'}]}
21
+ server = { 'name': 'test_create_server', 'flavorRef': '1', 'imageRef': '07bd625e-d3ae-415c-bc82-46d66168378a', 'networks': [{'uuid': '204e3939-34d2-40af-b52d-f58cfec1e2b1'}]}
10
22
  data = Misty.to_json('server' => server)
11
23
  response = cloud.compute.create_server(data)
12
24
  response.code.must_equal '202'
@@ -16,8 +28,7 @@ describe 'Compute Service Nova v2.1 features' do
16
28
  # GET
17
29
  response = cloud.compute.list_servers
18
30
  response.code.must_equal '200'
19
- response.body['servers'].size.must_equal 2
20
-
31
+ response.body['servers'].size.must_equal 1
21
32
  # GET with URI value
22
33
  response = cloud.compute.show_server_details(id)
23
34
  response.code.must_equal '200'
@@ -1,6 +1,17 @@
1
1
  require 'test_helper'
2
2
 
3
3
  describe 'Network Service Neutron v2.0 features' do
4
+ let(:auth) do
5
+ {
6
+ :url => 'http://192.0.2.6:5000',
7
+ :user => 'admin',
8
+ :password => 'QJdEmBzzEJpfpeRY6e3TEk7TW',
9
+ :project => 'admin',
10
+ :project_domain_id => 'default',
11
+ :domain => 'default'
12
+ }
13
+ end
14
+
4
15
  it 'GET/POST/PUT/DELETE requests' do
5
16
  VCR.use_cassette 'network using neutron v2.0' do
6
17
  cloud = Misty::Cloud.new(:auth => auth, :network => {:api_version => 'v2.0'})
@@ -15,7 +26,7 @@ describe 'Network Service Neutron v2.0 features' do
15
26
  # GET
16
27
  response = cloud.network.list_networks
17
28
  response.code.must_equal '200'
18
- response.body['networks'].size.must_equal 3
29
+ response.body['networks'].size.must_equal 2
19
30
 
20
31
  # GET with URI value
21
32
  response = cloud.network.show_network_details(id)
@@ -29,7 +40,8 @@ describe 'Network Service Neutron v2.0 features' do
29
40
  response.body['network']['name'].must_equal 'test_updated_network'
30
41
 
31
42
  # DELETE with URI value
32
- cloud.network.delete_network(id).code.must_equal '204'
43
+ response = cloud.network.delete_network(id)
44
+ response.code.must_equal '204'
33
45
  end
34
46
  end
35
47
  end
@@ -48,7 +48,19 @@ heat_template2 = {
48
48
  }
49
49
 
50
50
  describe 'Orchestration Service using Heat v1' do
51
+ let(:auth) do
52
+ {
53
+ :url => 'http://192.0.2.21:5000',
54
+ :user => 'admin',
55
+ :password => 'CJk9hb2ZFR96Ypu74KFFGWuhv',
56
+ :project => 'admin',
57
+ :project_domain_id => 'default',
58
+ :domain => 'default'
59
+ }
60
+ end
61
+
51
62
  it 'GET/POST/PUT/DELETE requests' do
63
+
52
64
  VCR.use_cassette 'orchestration using heat v1' do
53
65
  cloud = Misty::Cloud.new(:auth => auth, :orchestration => {:api_version => 'v1'})
54
66
 
@@ -9,14 +9,3 @@ VCR.configure do |config|
9
9
  config.cassette_library_dir = 'test/integration/vcr'
10
10
  config.hook_into :webmock
11
11
  end
12
-
13
- def auth
14
- {
15
- :url => 'http://192.0.2.21:5000',
16
- :user => 'admin',
17
- :password => 'CJk9hb2ZFR96Ypu74KFFGWuhv',
18
- :project => 'admin',
19
- :project_domain_id => 'default',
20
- :domain => 'default'
21
- }
22
- end
@@ -2,10 +2,10 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://192.0.2.21:5000/v3/auth/tokens
5
+ uri: http://192.0.2.6:5000/v3/auth/tokens
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"admin","domain":{"id":"default"},"password":"CJk9hb2ZFR96Ypu74KFFGWuhv"}}},"scope":{"project":{"name":"admin","domain":{"id":"default"}}}}}'
8
+ string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"admin","domain":{"id":"default"},"password":"QJdEmBzzEJpfpeRY6e3TEk7TW"}}},"scope":{"project":{"name":"admin","domain":{"id":"default"}}}}}'
9
9
  headers:
10
10
  Content-Type:
11
11
  - application/json
@@ -21,1087 +21,421 @@ http_interactions:
21
21
  message: Created
22
22
  headers:
23
23
  Date:
24
- - Sat, 10 Dec 2016 01:11:47 GMT
24
+ - Tue, 06 Feb 2018 10:50:25 GMT
25
25
  Server:
26
- - Apache/2.4.6 (Red Hat Enterprise Linux)
26
+ - Apache
27
27
  X-Subject-Token:
28
- - 833ec66536114df89e1490483869bfcf
28
+ - gAAAAABaeYhxoHMkreJurXUWJfEXeHzmk9c72zu6IJeDL37FXvBN6cUGNbOZIntK20y7pYeGRz-s6493D6tG1-WkKQpSrbhInxf_n76magyZoMX5EKvKkYRaucZrVstwZlSNVeXG6BrMoKu40cMBv6ttSYlIXpm_iGVXEtOMFOxdpfTy8tQ7C4Y
29
29
  Vary:
30
30
  - X-Auth-Token
31
31
  X-Openstack-Request-Id:
32
- - req-58dd3da3-63e6-4cf4-a7df-b05bb026294a
32
+ - req-c727183a-2c10-44ff-b7e0-a1b7bd96ee46
33
33
  Content-Length:
34
- - '8373'
34
+ - '8806'
35
35
  Content-Type:
36
36
  - application/json
37
37
  body:
38
38
  encoding: UTF-8
39
- string: '{"token": {"methods": ["password"], "roles": [{"id": "362084a241d94d56b6371f6cb1c87abf",
40
- "name": "admin"}], "expires_at": "2016-12-10T02:11:48.103055Z", "project":
41
- {"domain": {"id": "default", "name": "Default"}, "id": "48985e6b8da145699d411f12a3459fca",
42
- "name": "admin"}, "catalog": [{"endpoints": [{"region_id": "regionOne", "url":
43
- "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca", "region":
44
- "regionOne", "interface": "internal", "id": "09e14aa5f80a4c3d84f20ecef245af13"},
45
- {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
46
- "region": "regionOne", "interface": "public", "id": "8beeb2f5570f4e668bb9df77105c396d"},
47
- {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
48
- "region": "regionOne", "interface": "admin", "id": "d368b97fae184bba9fdd2213287a327b"}],
49
- "type": "compute", "id": "1a96b84b844a4c028f22b7da27501c0d", "name": "nova"},
50
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
51
- "region": "regionOne", "interface": "admin", "id": "3e02c6f778ba4ab38476fff972c269c8"},
52
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
53
- "region": "regionOne", "interface": "public", "id": "6483567da043458fb0bc734c39908f2f"},
54
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
55
- "region": "regionOne", "interface": "internal", "id": "ad95dbf1f99a4fbda130bdcc71b81c15"}],
56
- "type": "volume", "id": "1fb40dbf60ae483f853764381c1c6bab", "name": "cinder"},
57
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9696/",
58
- "region": "regionOne", "interface": "admin", "id": "029a7263b7e14ebe8f10a0033b636ed9"},
59
- {"region_id": "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne",
60
- "interface": "public", "id": "a8e4debb78ed4aef9989ef07780abb46"}, {"region_id":
61
- "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne", "interface":
62
- "internal", "id": "b188a6216018481d8b1f6f9f41e69354"}], "type": "network",
63
- "id": "2358e09f2ee14eca9b047cc3c2ca62f8", "name": "neutron"}, {"endpoints":
64
- [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v3", "region":
65
- "regionOne", "interface": "admin", "id": "0ede2537de2644199f649bb566015c2c"},
66
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne",
67
- "interface": "internal", "id": "2220349ef81d4b8fb678485c81f2a214"}, {"region_id":
68
- "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne", "interface":
69
- "public", "id": "9b84ce6363324320af67511b995d6e32"}], "type": "identity",
70
- "id": "2901e458d8b74d2399a041b5b64cb8d1", "name": "identity_v3"}, {"endpoints":
71
- [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
72
- "region": "regionOne", "interface": "public", "id": "45c91d23e63648308e45e05944a530b9"},
73
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
74
- "region": "regionOne", "interface": "admin", "id": "648693e76f00499289fc77ea6eea12eb"},
75
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
76
- "region": "regionOne", "interface": "internal", "id": "ca2d606db4694c80802398bea56b8d7c"}],
77
- "type": "volumev2", "id": "454c392dbb6d44bdb8a736a73628a8c4", "name": "cinderv2"},
78
- {"endpoints": [], "type": "identity_v3", "id": "6f3b70e1db1b4ce692f558bc7fa2dfd7",
79
- "name": "keystone_v3"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
80
- "region": "regionOne", "interface": "internal", "id": "9ee36bdd422c4d04b1737b38079a7160"},
81
- {"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1", "region": "regionOne",
82
- "interface": "admin", "id": "bc34638cfdae4cc1ae168c283e4e915a"}, {"region_id":
83
- "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
84
- "region": "regionOne", "interface": "public", "id": "d41709fb49114560b459300f661bb3ed"}],
85
- "type": "object-store", "id": "8e795505992141c1b32c1f9138b47b98", "name":
86
- "swift"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
87
- "region": "regionOne", "interface": "admin", "id": "04a4bcb47c774cf4b776dd330ec90ac7"},
88
- {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
89
- "region": "regionOne", "interface": "internal", "id": "39f306a869084899af052b3d7a85701f"},
90
- {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
91
- "region": "regionOne", "interface": "public", "id": "b37cfb8813c649ca932b74717a4924dc"}],
92
- "type": "orchestration", "id": "a8e72740ce92456ab392a75375ec9df7", "name":
93
- "heat"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8042/",
94
- "region": "regionOne", "interface": "internal", "id": "2bd9d0c1fc544f078c2fef39a5f4decd"},
95
- {"region_id": "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne",
96
- "interface": "admin", "id": "9c3ac290cf5944e9957f387987a6d7e8"}, {"region_id":
97
- "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne", "interface":
98
- "public", "id": "b8345563ada3461a8f871d897bae1c60"}], "type": "alarming",
99
- "id": "afce35c3b5c640658578063bcb52fe0e", "name": "aodh"}, {"endpoints": [{"region_id":
100
- "regionOne", "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface":
101
- "public", "id": "0a8c20af41384e9b94ffbd266e69f8b0"}, {"region_id": "regionOne",
102
- "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface": "admin",
103
- "id": "407e04f068d64cc49c8beb612087d60c"}, {"region_id": "regionOne", "url":
104
- "http://192.0.2.21:8777/", "region": "regionOne", "interface": "internal",
105
- "id": "5506ecfd12e04e9fae93a16dd7cd473e"}], "type": "metering", "id": "afde6b4f37d1406d83939829e87fbfb9",
106
- "name": "ceilometer"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9292/",
107
- "region": "regionOne", "interface": "public", "id": "1b37c9b615634b9ba354acab8e797bd5"},
108
- {"region_id": "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne",
109
- "interface": "admin", "id": "24ed5cb4e2104b9796a2529a21de04ac"}, {"region_id":
110
- "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne", "interface":
111
- "internal", "id": "8493c76b6a1f400b80e20a11e3ac9e8d"}], "type": "image", "id":
112
- "be4dfdcf14ef48039edf82ef5ae1629e", "name": "glance"}, {"endpoints": [{"region_id":
113
- "regionOne", "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface":
114
- "admin", "id": "709ff9a3f13848209b8934bb1f6dec26"}, {"region_id": "regionOne",
115
- "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface": "internal",
116
- "id": "d51d46cd35f941df88f5508b3e879777"}, {"region_id": "regionOne", "url":
117
- "http://192.0.2.21:8041/", "region": "regionOne", "interface": "public", "id":
118
- "fd3c88b22fab4df58cd629f174fd2e3b"}], "type": "metric", "id": "c2b4bf300bd84cfba6d9cb8c03874c15",
119
- "name": "gnocchi"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v2.0",
120
- "region": "regionOne", "interface": "admin", "id": "9bbbac3ebf04425fbf6f850c61727c36"},
121
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
122
- "regionOne", "interface": "public", "id": "a4f073188f834e08a541f3172afbf2aa"},
123
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
124
- "regionOne", "interface": "internal", "id": "fe25750a2f23451186b78cafeb2500c2"}],
125
- "type": "identity", "id": "dcf4906057004977bdabba7de167c923", "name": "keystone"},
126
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
127
- "region": "regionOne", "interface": "internal", "id": "09f14e579c22456498293c45deafc29c"},
128
- {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
129
- "region": "regionOne", "interface": "public", "id": "39b2796eadd2410295b3f0b1398db694"},
130
- {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
131
- "region": "regionOne", "interface": "admin", "id": "7ec9decfbe5b46ee850619c1752bfa67"}],
132
- "type": "data-processing", "id": "ea7797ce177d4bfd8e360de675c71f35", "name":
133
- "sahara"}], "user": {"domain": {"id": "default", "name": "Default"}, "id":
134
- "1e50c2f0995446fd9b135a1a549cabdb", "name": "admin"}, "audit_ids": ["NHwNmQjzQiCdjw0aiInYpg"],
135
- "issued_at": "2016-12-10T01:11:48.103087Z"}}'
39
+ string: '{"token": {"is_domain": false, "methods": ["password"], "roles": [{"id":
40
+ "213532edcc504e83940ae2993c1f1e6a", "name": "admin"}], "expires_at": "2018-02-06T11:50:25.000000Z",
41
+ "project": {"domain": {"id": "default", "name": "Default"}, "id": "59c8c1f16fac4c51901777909300a613",
42
+ "name": "admin"}, "catalog": [{"endpoints": [], "type": "metering", "id":
43
+ "01c6a80de7584a8f89ba9695843ef05c", "name": "ceilometer"}, {"endpoints": [{"region_id":
44
+ "regionOne", "url": "http://192.0.2.6:8776/v3/59c8c1f16fac4c51901777909300a613",
45
+ "region": "regionOne", "interface": "public", "id": "36e3ca3783b2455a9adb37efa21df11b"},
46
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8776/v3/59c8c1f16fac4c51901777909300a613",
47
+ "region": "regionOne", "interface": "admin", "id": "853fc4eac36b44edbdd389081b9084b0"},
48
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8776/v3/59c8c1f16fac4c51901777909300a613",
49
+ "region": "regionOne", "interface": "internal", "id": "f12ff8e1c9624546a4798dc1b56198cd"}],
50
+ "type": "volumev3", "id": "087e7945926941cb92986c3f7dd4e47c", "name": "cinderv3"},
51
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.6:8042",
52
+ "region": "regionOne", "interface": "public", "id": "31cf450b654c4a59af4045a09a162147"},
53
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8042", "region": "regionOne",
54
+ "interface": "admin", "id": "6a8c7ee7738b4028aaf6c1d784d48c7d"}, {"region_id":
55
+ "regionOne", "url": "http://192.0.2.6:8042", "region": "regionOne", "interface":
56
+ "internal", "id": "6b615f5ce4ee4f6ba9af5454f3ba96a3"}], "type": "alarming",
57
+ "id": "1b5bf4b0e4e14336bad48986a1b0ee41", "name": "aodh"}, {"endpoints": [{"region_id":
58
+ "regionOne", "url": "http://192.0.2.6:8776/v2/59c8c1f16fac4c51901777909300a613",
59
+ "region": "regionOne", "interface": "public", "id": "ab56e602d6db4bdbab6f2dbf9fe7da6b"},
60
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8776/v2/59c8c1f16fac4c51901777909300a613",
61
+ "region": "regionOne", "interface": "internal", "id": "dc0b22ac0f7b47a99aab6d0173ec3fcb"},
62
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8776/v2/59c8c1f16fac4c51901777909300a613",
63
+ "region": "regionOne", "interface": "admin", "id": "fdd6e4d3930f4d829a5eebf39027e9ec"}],
64
+ "type": "volumev2", "id": "331c2bd47d0f45f490cf37bec56ee537", "name": "cinderv2"},
65
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.6:35357",
66
+ "region": "regionOne", "interface": "admin", "id": "14a33351527d4e1a8eef56aeeebaa03e"},
67
+ {"region_id": "regionOne", "url": "http://192.0.2.6:5000", "region": "regionOne",
68
+ "interface": "public", "id": "24f3e640c7df49888f8fdf36e30460b5"}, {"region_id":
69
+ "regionOne", "url": "http://192.0.2.6:5000", "region": "regionOne", "interface":
70
+ "internal", "id": "6099f4d131d04794b022c08f06db7e16"}], "type": "identity",
71
+ "id": "3ff1149c14cf4c9c843dc33b3aac691c", "name": "keystone"}, {"endpoints":
72
+ [{"region_id": "regionOne", "url": "http://192.0.2.6:8778/placement", "region":
73
+ "regionOne", "interface": "admin", "id": "77b09873d16048f0991a3bee5193e0d8"},
74
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8778/placement", "region":
75
+ "regionOne", "interface": "internal", "id": "c6b88e1235fa4559a8c36a7f08059d79"},
76
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8778/placement", "region":
77
+ "regionOne", "interface": "public", "id": "eef901feba474299b8ca0e658c97f274"}],
78
+ "type": "placement", "id": "429fd6dfde2f46118bbc452103266ec5", "name": "placement"},
79
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.6:8080/v1/AUTH_59c8c1f16fac4c51901777909300a613",
80
+ "region": "regionOne", "interface": "internal", "id": "26d4687cb9e5459394b0ee36a9353fcd"},
81
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8080", "region": "regionOne",
82
+ "interface": "admin", "id": "6bae0f60c7474445b6aab1f64e84b51d"}, {"region_id":
83
+ "regionOne", "url": "http://192.0.2.6:8080/v1/AUTH_59c8c1f16fac4c51901777909300a613",
84
+ "region": "regionOne", "interface": "public", "id": "fc0963f553764bdf94e3d8f5deb87c09"}],
85
+ "type": "object-store", "id": "5b42380ec903416691a13889722a91d0", "name":
86
+ "swift"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.6:9696",
87
+ "region": "regionOne", "interface": "public", "id": "4adcb88cf2eb473abb19244c4c31aef7"},
88
+ {"region_id": "regionOne", "url": "http://192.0.2.6:9696", "region": "regionOne",
89
+ "interface": "internal", "id": "c62ea484d7884c4c9d13db1fa2702231"}, {"region_id":
90
+ "regionOne", "url": "http://192.0.2.6:9696", "region": "regionOne", "interface":
91
+ "admin", "id": "de6ed84c579240efbefdffa1486cdf4b"}], "type": "network", "id":
92
+ "5f31f06a6889475a95506d817c1ba256", "name": "neutron"}, {"endpoints": [{"region_id":
93
+ "regionOne", "url": "http://192.0.2.6:9292", "region": "regionOne", "interface":
94
+ "admin", "id": "17e2f6d18c7c4e299db9e8b7d55133a6"}, {"region_id": "regionOne",
95
+ "url": "http://192.0.2.6:9292", "region": "regionOne", "interface": "internal",
96
+ "id": "a909cf02c64142229ba94499bc36b383"}, {"region_id": "regionOne", "url":
97
+ "http://192.0.2.6:9292", "region": "regionOne", "interface": "public", "id":
98
+ "dedfced93e7c4403b812e157ecfcfddf"}], "type": "image", "id": "64ee6a5c265b4489a08e0080bdebb208",
99
+ "name": "glance"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.6:8774/v2.1",
100
+ "region": "regionOne", "interface": "admin", "id": "10642a5e53da4c47bc0539b960035463"},
101
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8774/v2.1", "region":
102
+ "regionOne", "interface": "internal", "id": "3566ab84e23a41f2b65ee7904c29a31f"},
103
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8774/v2.1", "region":
104
+ "regionOne", "interface": "public", "id": "506d07ce8cd4407eb982f85344c1852c"}],
105
+ "type": "compute", "id": "887238f7850348339bd91ba759e0dd51", "name": "nova"},
106
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.6:8041",
107
+ "region": "regionOne", "interface": "internal", "id": "4ab6206cc74e4452ab069c8a1d34caf9"},
108
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8041", "region": "regionOne",
109
+ "interface": "admin", "id": "6e179f64038f4eef915de2ada20ee466"}, {"region_id":
110
+ "regionOne", "url": "http://192.0.2.6:8041", "region": "regionOne", "interface":
111
+ "public", "id": "def9a953c4a04fa28c9514f48d9e2970"}], "type": "metric", "id":
112
+ "8d98a573d39740d28ccb9a91223eb4f4", "name": "gnocchi"}, {"endpoints": [{"region_id":
113
+ "regionOne", "url": "http://192.0.2.6:8776/v1/59c8c1f16fac4c51901777909300a613",
114
+ "region": "regionOne", "interface": "admin", "id": "4330ad62ee3543eda9c8fe85fe28e5b4"},
115
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8776/v1/59c8c1f16fac4c51901777909300a613",
116
+ "region": "regionOne", "interface": "internal", "id": "63899d36f66941f68512d4e7d7310ff8"},
117
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8776/v1/59c8c1f16fac4c51901777909300a613",
118
+ "region": "regionOne", "interface": "public", "id": "7648c5cfe3584776a70ca9e66c8cbfea"}],
119
+ "type": "volume", "id": "a9ebf6452b734e539b9ac0e48591b035", "name": "cinder"},
120
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.6:8000/v1",
121
+ "region": "regionOne", "interface": "admin", "id": "668ea5b4fddb4c1db333f6c72b521cba"},
122
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8000/v1", "region": "regionOne",
123
+ "interface": "public", "id": "81690f51abaa42fa83f72539faf23764"}, {"region_id":
124
+ "regionOne", "url": "http://192.0.2.6:8000/v1", "region": "regionOne", "interface":
125
+ "internal", "id": "eabe8f67abd54a58aecb94136f22c595"}], "type": "cloudformation",
126
+ "id": "d337aa2cc6794955a567d6442ae0cbd7", "name": "heat-cfn"}, {"endpoints":
127
+ [{"region_id": "regionOne", "url": "http://192.0.2.6:8977", "region": "regionOne",
128
+ "interface": "internal", "id": "6f21ab2309ee46bb8559c564f1b029e1"}, {"region_id":
129
+ "regionOne", "url": "http://192.0.2.6:8977", "region": "regionOne", "interface":
130
+ "public", "id": "74a134bf287544b3beadef553bd58c9e"}, {"region_id": "regionOne",
131
+ "url": "http://192.0.2.6:8977", "region": "regionOne", "interface": "admin",
132
+ "id": "dc7bb053c09b4675ba38a7d4e4f02e0d"}], "type": "event", "id": "d50cf40d92f84c3791f1ff65265e19b7",
133
+ "name": "panko"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.6:8004/v1/59c8c1f16fac4c51901777909300a613",
134
+ "region": "regionOne", "interface": "admin", "id": "9c7701332a8847c2ac1e0f667fda34cb"},
135
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8004/v1/59c8c1f16fac4c51901777909300a613",
136
+ "region": "regionOne", "interface": "internal", "id": "eeb082fde4f14fada3396d8121135bb6"},
137
+ {"region_id": "regionOne", "url": "http://192.0.2.6:8004/v1/59c8c1f16fac4c51901777909300a613",
138
+ "region": "regionOne", "interface": "public", "id": "fad9ce48fb2540b289cec016db32069f"}],
139
+ "type": "orchestration", "id": "deac00d1bcf64b9bab16c20ec30ec411", "name":
140
+ "heat"}], "user": {"password_expires_at": null, "domain": {"id": "default",
141
+ "name": "Default"}, "id": "56d5f121c4b94edd90d57703dad4247a", "name": "admin"},
142
+ "audit_ids": ["yyAERzrqQCe-D5ZcKPoijg"], "issued_at": "2018-02-06T10:50:25.000000Z"}}'
136
143
  http_version:
137
- recorded_at: Fri, 17 Feb 2017 06:15:10 GMT
144
+ recorded_at: Tue, 06 Feb 2018 10:50:25 GMT
138
145
  - request:
139
146
  method: get
140
- uri: http://192.0.2.21:8774/
147
+ uri: http://192.0.2.6:8774/
141
148
  body:
142
149
  encoding: US-ASCII
143
150
  string: ''
144
151
  headers:
145
- Content-Type:
146
- - application/json
147
152
  Accept:
148
153
  - application/json
149
154
  Accept-Encoding:
150
155
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
151
156
  User-Agent:
152
157
  - Ruby
158
+ X-Auth-Token:
159
+ - gAAAAABaeYhxoHMkreJurXUWJfEXeHzmk9c72zu6IJeDL37FXvBN6cUGNbOZIntK20y7pYeGRz-s6493D6tG1-WkKQpSrbhInxf_n76magyZoMX5EKvKkYRaucZrVstwZlSNVeXG6BrMoKu40cMBv6ttSYlIXpm_iGVXEtOMFOxdpfTy8tQ7C4Y
153
160
  response:
154
161
  status:
155
162
  code: 200
156
163
  message: OK
157
164
  headers:
158
- Content-Length:
159
- - '369'
160
- Content-Type:
161
- - application/json
162
165
  Date:
163
- - Sat, 10 Dec 2016 01:11:48 GMT
164
- body:
165
- encoding: UTF-8
166
- string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z",
167
- "links": [{"href": "http://192.0.2.21:8774/v2/", "rel": "self"}], "min_version":
168
- "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z",
169
- "links": [{"href": "http://192.0.2.21:8774/v2.1/", "rel": "self"}], "min_version":
170
- "2.1", "version": "2.25", "id": "v2.1"}]}'
171
- http_version:
172
- recorded_at: Fri, 17 Feb 2017 06:15:10 GMT
173
- - request:
174
- method: post
175
- uri: http://192.0.2.21:5000/v3/auth/tokens
176
- body:
177
- encoding: UTF-8
178
- string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"admin","domain":{"id":"default"},"password":"CJk9hb2ZFR96Ypu74KFFGWuhv"}}},"scope":{"project":{"name":"admin","domain":{"id":"default"}}}}}'
179
- headers:
180
- Content-Type:
181
- - application/json
182
- Accept:
183
- - application/json
184
- Accept-Encoding:
185
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
186
- User-Agent:
187
- - Ruby
188
- response:
189
- status:
190
- code: 201
191
- message: Created
192
- headers:
193
- Date:
194
- - Sat, 10 Dec 2016 01:11:48 GMT
166
+ - Tue, 06 Feb 2018 10:50:25 GMT
195
167
  Server:
196
- - Apache/2.4.6 (Red Hat Enterprise Linux)
197
- X-Subject-Token:
198
- - 0c3727438acb413c9250d310dd29843c
168
+ - Apache
199
169
  Vary:
200
- - X-Auth-Token
201
- X-Openstack-Request-Id:
202
- - req-25d919f3-adca-418d-8d66-9916eb5c7dd9
170
+ - Accept-Encoding
203
171
  Content-Length:
204
- - '8373'
172
+ - '196'
205
173
  Content-Type:
206
174
  - application/json
207
175
  body:
208
- encoding: UTF-8
209
- string: '{"token": {"methods": ["password"], "roles": [{"id": "362084a241d94d56b6371f6cb1c87abf",
210
- "name": "admin"}], "expires_at": "2016-12-10T02:11:48.255480Z", "project":
211
- {"domain": {"id": "default", "name": "Default"}, "id": "48985e6b8da145699d411f12a3459fca",
212
- "name": "admin"}, "catalog": [{"endpoints": [{"region_id": "regionOne", "url":
213
- "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca", "region":
214
- "regionOne", "interface": "internal", "id": "09e14aa5f80a4c3d84f20ecef245af13"},
215
- {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
216
- "region": "regionOne", "interface": "public", "id": "8beeb2f5570f4e668bb9df77105c396d"},
217
- {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
218
- "region": "regionOne", "interface": "admin", "id": "d368b97fae184bba9fdd2213287a327b"}],
219
- "type": "compute", "id": "1a96b84b844a4c028f22b7da27501c0d", "name": "nova"},
220
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
221
- "region": "regionOne", "interface": "admin", "id": "3e02c6f778ba4ab38476fff972c269c8"},
222
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
223
- "region": "regionOne", "interface": "public", "id": "6483567da043458fb0bc734c39908f2f"},
224
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
225
- "region": "regionOne", "interface": "internal", "id": "ad95dbf1f99a4fbda130bdcc71b81c15"}],
226
- "type": "volume", "id": "1fb40dbf60ae483f853764381c1c6bab", "name": "cinder"},
227
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9696/",
228
- "region": "regionOne", "interface": "admin", "id": "029a7263b7e14ebe8f10a0033b636ed9"},
229
- {"region_id": "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne",
230
- "interface": "public", "id": "a8e4debb78ed4aef9989ef07780abb46"}, {"region_id":
231
- "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne", "interface":
232
- "internal", "id": "b188a6216018481d8b1f6f9f41e69354"}], "type": "network",
233
- "id": "2358e09f2ee14eca9b047cc3c2ca62f8", "name": "neutron"}, {"endpoints":
234
- [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v3", "region":
235
- "regionOne", "interface": "admin", "id": "0ede2537de2644199f649bb566015c2c"},
236
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne",
237
- "interface": "internal", "id": "2220349ef81d4b8fb678485c81f2a214"}, {"region_id":
238
- "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne", "interface":
239
- "public", "id": "9b84ce6363324320af67511b995d6e32"}], "type": "identity",
240
- "id": "2901e458d8b74d2399a041b5b64cb8d1", "name": "identity_v3"}, {"endpoints":
241
- [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
242
- "region": "regionOne", "interface": "public", "id": "45c91d23e63648308e45e05944a530b9"},
243
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
244
- "region": "regionOne", "interface": "admin", "id": "648693e76f00499289fc77ea6eea12eb"},
245
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
246
- "region": "regionOne", "interface": "internal", "id": "ca2d606db4694c80802398bea56b8d7c"}],
247
- "type": "volumev2", "id": "454c392dbb6d44bdb8a736a73628a8c4", "name": "cinderv2"},
248
- {"endpoints": [], "type": "identity_v3", "id": "6f3b70e1db1b4ce692f558bc7fa2dfd7",
249
- "name": "keystone_v3"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
250
- "region": "regionOne", "interface": "internal", "id": "9ee36bdd422c4d04b1737b38079a7160"},
251
- {"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1", "region": "regionOne",
252
- "interface": "admin", "id": "bc34638cfdae4cc1ae168c283e4e915a"}, {"region_id":
253
- "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
254
- "region": "regionOne", "interface": "public", "id": "d41709fb49114560b459300f661bb3ed"}],
255
- "type": "object-store", "id": "8e795505992141c1b32c1f9138b47b98", "name":
256
- "swift"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
257
- "region": "regionOne", "interface": "admin", "id": "04a4bcb47c774cf4b776dd330ec90ac7"},
258
- {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
259
- "region": "regionOne", "interface": "internal", "id": "39f306a869084899af052b3d7a85701f"},
260
- {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
261
- "region": "regionOne", "interface": "public", "id": "b37cfb8813c649ca932b74717a4924dc"}],
262
- "type": "orchestration", "id": "a8e72740ce92456ab392a75375ec9df7", "name":
263
- "heat"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8042/",
264
- "region": "regionOne", "interface": "internal", "id": "2bd9d0c1fc544f078c2fef39a5f4decd"},
265
- {"region_id": "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne",
266
- "interface": "admin", "id": "9c3ac290cf5944e9957f387987a6d7e8"}, {"region_id":
267
- "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne", "interface":
268
- "public", "id": "b8345563ada3461a8f871d897bae1c60"}], "type": "alarming",
269
- "id": "afce35c3b5c640658578063bcb52fe0e", "name": "aodh"}, {"endpoints": [{"region_id":
270
- "regionOne", "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface":
271
- "public", "id": "0a8c20af41384e9b94ffbd266e69f8b0"}, {"region_id": "regionOne",
272
- "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface": "admin",
273
- "id": "407e04f068d64cc49c8beb612087d60c"}, {"region_id": "regionOne", "url":
274
- "http://192.0.2.21:8777/", "region": "regionOne", "interface": "internal",
275
- "id": "5506ecfd12e04e9fae93a16dd7cd473e"}], "type": "metering", "id": "afde6b4f37d1406d83939829e87fbfb9",
276
- "name": "ceilometer"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9292/",
277
- "region": "regionOne", "interface": "public", "id": "1b37c9b615634b9ba354acab8e797bd5"},
278
- {"region_id": "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne",
279
- "interface": "admin", "id": "24ed5cb4e2104b9796a2529a21de04ac"}, {"region_id":
280
- "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne", "interface":
281
- "internal", "id": "8493c76b6a1f400b80e20a11e3ac9e8d"}], "type": "image", "id":
282
- "be4dfdcf14ef48039edf82ef5ae1629e", "name": "glance"}, {"endpoints": [{"region_id":
283
- "regionOne", "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface":
284
- "admin", "id": "709ff9a3f13848209b8934bb1f6dec26"}, {"region_id": "regionOne",
285
- "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface": "internal",
286
- "id": "d51d46cd35f941df88f5508b3e879777"}, {"region_id": "regionOne", "url":
287
- "http://192.0.2.21:8041/", "region": "regionOne", "interface": "public", "id":
288
- "fd3c88b22fab4df58cd629f174fd2e3b"}], "type": "metric", "id": "c2b4bf300bd84cfba6d9cb8c03874c15",
289
- "name": "gnocchi"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v2.0",
290
- "region": "regionOne", "interface": "admin", "id": "9bbbac3ebf04425fbf6f850c61727c36"},
291
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
292
- "regionOne", "interface": "public", "id": "a4f073188f834e08a541f3172afbf2aa"},
293
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
294
- "regionOne", "interface": "internal", "id": "fe25750a2f23451186b78cafeb2500c2"}],
295
- "type": "identity", "id": "dcf4906057004977bdabba7de167c923", "name": "keystone"},
296
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
297
- "region": "regionOne", "interface": "internal", "id": "09f14e579c22456498293c45deafc29c"},
298
- {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
299
- "region": "regionOne", "interface": "public", "id": "39b2796eadd2410295b3f0b1398db694"},
300
- {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
301
- "region": "regionOne", "interface": "admin", "id": "7ec9decfbe5b46ee850619c1752bfa67"}],
302
- "type": "data-processing", "id": "ea7797ce177d4bfd8e360de675c71f35", "name":
303
- "sahara"}], "user": {"domain": {"id": "default", "name": "Default"}, "id":
304
- "1e50c2f0995446fd9b135a1a549cabdb", "name": "admin"}, "audit_ids": ["BthQxKt7RTuoz-DPEpy_vg"],
305
- "issued_at": "2016-12-10T01:11:48.255504Z"}}'
176
+ encoding: ASCII-8BIT
177
+ string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z",
178
+ "links": [{"href": "http://192.0.2.6:8774/v2/", "rel": "self"}], "min_version":
179
+ "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z",
180
+ "links": [{"href": "http://192.0.2.6:8774/v2.1/", "rel": "self"}], "min_version":
181
+ "2.1", "version": "2.53", "id": "v2.1"}]}'
306
182
  http_version:
307
- recorded_at: Fri, 17 Feb 2017 06:15:11 GMT
183
+ recorded_at: Tue, 06 Feb 2018 10:50:25 GMT
308
184
  - request:
309
185
  method: post
310
- uri: http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca/servers
186
+ uri: http://192.0.2.6:8774/v2.1/servers
311
187
  body:
312
188
  encoding: UTF-8
313
- string: '{"server":{"name":"test_create_server","flavorRef":"1","imageRef":"c091ccf2-a4ae-4fa0-a716-defd6376b5dc","networks":[{"uuid":"9c6e43b6-3d1d-4106-ad45-5fc3f5e371ee"}]}}'
189
+ string: '{"server":{"name":"test_create_server","flavorRef":"1","imageRef":"07bd625e-d3ae-415c-bc82-46d66168378a","networks":[{"uuid":"204e3939-34d2-40af-b52d-f58cfec1e2b1"}]}}'
314
190
  headers:
315
- Content-Type:
316
- - application/json
317
191
  Accept:
192
+ - application/json; q=1.0
193
+ Content-Type:
318
194
  - application/json
319
- X-Auth-Token:
320
- - 833ec66536114df89e1490483869bfcf
321
- X-Openstack-Nova-Api-Version:
322
- - '2.25'
323
- X-Openstack-Api-Version:
324
- - compute 2.25
325
195
  Accept-Encoding:
326
196
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
327
197
  User-Agent:
328
198
  - Ruby
199
+ X-Auth-Token:
200
+ - gAAAAABaeYhxoHMkreJurXUWJfEXeHzmk9c72zu6IJeDL37FXvBN6cUGNbOZIntK20y7pYeGRz-s6493D6tG1-WkKQpSrbhInxf_n76magyZoMX5EKvKkYRaucZrVstwZlSNVeXG6BrMoKu40cMBv6ttSYlIXpm_iGVXEtOMFOxdpfTy8tQ7C4Y
329
201
  response:
330
202
  status:
331
203
  code: 202
332
204
  message: Accepted
333
205
  headers:
334
- Content-Length:
335
- - '438'
336
- Location:
337
- - http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca/servers/d20888e5-736c-4bf8-92f2-e5a0209886a2
338
- Content-Type:
339
- - application/json
340
- X-Openstack-Nova-Api-Version:
341
- - '2.25'
342
- Vary:
343
- - X-OpenStack-Nova-API-Version
344
- X-Compute-Request-Id:
345
- - req-b9254197-ebfe-4e40-86d5-708c425cf142
346
206
  Date:
347
- - Sat, 10 Dec 2016 01:11:48 GMT
348
- body:
349
- encoding: UTF-8
350
- string: '{"server": {"security_groups": [{"name": "default"}], "OS-DCF:diskConfig":
351
- "MANUAL", "id": "d20888e5-736c-4bf8-92f2-e5a0209886a2", "links": [{"href":
352
- "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca/servers/d20888e5-736c-4bf8-92f2-e5a0209886a2",
353
- "rel": "self"}, {"href": "http://192.0.2.21:8774/48985e6b8da145699d411f12a3459fca/servers/d20888e5-736c-4bf8-92f2-e5a0209886a2",
354
- "rel": "bookmark"}], "adminPass": "GjMk287xQWKG"}}'
355
- http_version:
356
- recorded_at: Fri, 17 Feb 2017 06:15:11 GMT
357
- - request:
358
- method: post
359
- uri: http://192.0.2.21:5000/v3/auth/tokens
360
- body:
361
- encoding: UTF-8
362
- string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"admin","domain":{"id":"default"},"password":"CJk9hb2ZFR96Ypu74KFFGWuhv"}}},"scope":{"project":{"name":"admin","domain":{"id":"default"}}}}}'
363
- headers:
364
- Content-Type:
365
- - application/json
366
- Accept:
367
- - application/json
368
- Accept-Encoding:
369
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
370
- User-Agent:
371
- - Ruby
372
- response:
373
- status:
374
- code: 201
375
- message: Created
376
- headers:
377
- Date:
378
- - Sat, 10 Dec 2016 01:11:48 GMT
207
+ - Tue, 06 Feb 2018 10:50:25 GMT
379
208
  Server:
380
- - Apache/2.4.6 (Red Hat Enterprise Linux)
381
- X-Subject-Token:
382
- - a7dbc27393894b6bac1dcbc698f5e130
209
+ - Apache
210
+ Openstack-Api-Version:
211
+ - compute 2.1
212
+ X-Openstack-Nova-Api-Version:
213
+ - '2.1'
383
214
  Vary:
384
- - X-Auth-Token
215
+ - OpenStack-API-Version,X-OpenStack-Nova-API-Version
385
216
  X-Openstack-Request-Id:
386
- - req-9277647c-0f47-4c3b-8a88-5a4fcf2dfe2f
217
+ - req-0fd062bd-461a-4c24-8cc4-ef0bd3297f5f
218
+ X-Compute-Request-Id:
219
+ - req-0fd062bd-461a-4c24-8cc4-ef0bd3297f5f
387
220
  Content-Length:
388
- - '8373'
221
+ - '370'
222
+ Location:
223
+ - http://192.0.2.6:8774/v2.1/servers/69caa692-4fe3-4acc-9b8c-865ef973ccbe
389
224
  Content-Type:
390
225
  - application/json
391
226
  body:
392
227
  encoding: UTF-8
393
- string: '{"token": {"methods": ["password"], "roles": [{"id": "362084a241d94d56b6371f6cb1c87abf",
394
- "name": "admin"}], "expires_at": "2016-12-10T02:11:48.932754Z", "project":
395
- {"domain": {"id": "default", "name": "Default"}, "id": "48985e6b8da145699d411f12a3459fca",
396
- "name": "admin"}, "catalog": [{"endpoints": [{"region_id": "regionOne", "url":
397
- "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca", "region":
398
- "regionOne", "interface": "internal", "id": "09e14aa5f80a4c3d84f20ecef245af13"},
399
- {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
400
- "region": "regionOne", "interface": "public", "id": "8beeb2f5570f4e668bb9df77105c396d"},
401
- {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
402
- "region": "regionOne", "interface": "admin", "id": "d368b97fae184bba9fdd2213287a327b"}],
403
- "type": "compute", "id": "1a96b84b844a4c028f22b7da27501c0d", "name": "nova"},
404
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
405
- "region": "regionOne", "interface": "admin", "id": "3e02c6f778ba4ab38476fff972c269c8"},
406
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
407
- "region": "regionOne", "interface": "public", "id": "6483567da043458fb0bc734c39908f2f"},
408
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
409
- "region": "regionOne", "interface": "internal", "id": "ad95dbf1f99a4fbda130bdcc71b81c15"}],
410
- "type": "volume", "id": "1fb40dbf60ae483f853764381c1c6bab", "name": "cinder"},
411
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9696/",
412
- "region": "regionOne", "interface": "admin", "id": "029a7263b7e14ebe8f10a0033b636ed9"},
413
- {"region_id": "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne",
414
- "interface": "public", "id": "a8e4debb78ed4aef9989ef07780abb46"}, {"region_id":
415
- "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne", "interface":
416
- "internal", "id": "b188a6216018481d8b1f6f9f41e69354"}], "type": "network",
417
- "id": "2358e09f2ee14eca9b047cc3c2ca62f8", "name": "neutron"}, {"endpoints":
418
- [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v3", "region":
419
- "regionOne", "interface": "admin", "id": "0ede2537de2644199f649bb566015c2c"},
420
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne",
421
- "interface": "internal", "id": "2220349ef81d4b8fb678485c81f2a214"}, {"region_id":
422
- "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne", "interface":
423
- "public", "id": "9b84ce6363324320af67511b995d6e32"}], "type": "identity",
424
- "id": "2901e458d8b74d2399a041b5b64cb8d1", "name": "identity_v3"}, {"endpoints":
425
- [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
426
- "region": "regionOne", "interface": "public", "id": "45c91d23e63648308e45e05944a530b9"},
427
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
428
- "region": "regionOne", "interface": "admin", "id": "648693e76f00499289fc77ea6eea12eb"},
429
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
430
- "region": "regionOne", "interface": "internal", "id": "ca2d606db4694c80802398bea56b8d7c"}],
431
- "type": "volumev2", "id": "454c392dbb6d44bdb8a736a73628a8c4", "name": "cinderv2"},
432
- {"endpoints": [], "type": "identity_v3", "id": "6f3b70e1db1b4ce692f558bc7fa2dfd7",
433
- "name": "keystone_v3"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
434
- "region": "regionOne", "interface": "internal", "id": "9ee36bdd422c4d04b1737b38079a7160"},
435
- {"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1", "region": "regionOne",
436
- "interface": "admin", "id": "bc34638cfdae4cc1ae168c283e4e915a"}, {"region_id":
437
- "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
438
- "region": "regionOne", "interface": "public", "id": "d41709fb49114560b459300f661bb3ed"}],
439
- "type": "object-store", "id": "8e795505992141c1b32c1f9138b47b98", "name":
440
- "swift"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
441
- "region": "regionOne", "interface": "admin", "id": "04a4bcb47c774cf4b776dd330ec90ac7"},
442
- {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
443
- "region": "regionOne", "interface": "internal", "id": "39f306a869084899af052b3d7a85701f"},
444
- {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
445
- "region": "regionOne", "interface": "public", "id": "b37cfb8813c649ca932b74717a4924dc"}],
446
- "type": "orchestration", "id": "a8e72740ce92456ab392a75375ec9df7", "name":
447
- "heat"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8042/",
448
- "region": "regionOne", "interface": "internal", "id": "2bd9d0c1fc544f078c2fef39a5f4decd"},
449
- {"region_id": "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne",
450
- "interface": "admin", "id": "9c3ac290cf5944e9957f387987a6d7e8"}, {"region_id":
451
- "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne", "interface":
452
- "public", "id": "b8345563ada3461a8f871d897bae1c60"}], "type": "alarming",
453
- "id": "afce35c3b5c640658578063bcb52fe0e", "name": "aodh"}, {"endpoints": [{"region_id":
454
- "regionOne", "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface":
455
- "public", "id": "0a8c20af41384e9b94ffbd266e69f8b0"}, {"region_id": "regionOne",
456
- "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface": "admin",
457
- "id": "407e04f068d64cc49c8beb612087d60c"}, {"region_id": "regionOne", "url":
458
- "http://192.0.2.21:8777/", "region": "regionOne", "interface": "internal",
459
- "id": "5506ecfd12e04e9fae93a16dd7cd473e"}], "type": "metering", "id": "afde6b4f37d1406d83939829e87fbfb9",
460
- "name": "ceilometer"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9292/",
461
- "region": "regionOne", "interface": "public", "id": "1b37c9b615634b9ba354acab8e797bd5"},
462
- {"region_id": "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne",
463
- "interface": "admin", "id": "24ed5cb4e2104b9796a2529a21de04ac"}, {"region_id":
464
- "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne", "interface":
465
- "internal", "id": "8493c76b6a1f400b80e20a11e3ac9e8d"}], "type": "image", "id":
466
- "be4dfdcf14ef48039edf82ef5ae1629e", "name": "glance"}, {"endpoints": [{"region_id":
467
- "regionOne", "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface":
468
- "admin", "id": "709ff9a3f13848209b8934bb1f6dec26"}, {"region_id": "regionOne",
469
- "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface": "internal",
470
- "id": "d51d46cd35f941df88f5508b3e879777"}, {"region_id": "regionOne", "url":
471
- "http://192.0.2.21:8041/", "region": "regionOne", "interface": "public", "id":
472
- "fd3c88b22fab4df58cd629f174fd2e3b"}], "type": "metric", "id": "c2b4bf300bd84cfba6d9cb8c03874c15",
473
- "name": "gnocchi"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v2.0",
474
- "region": "regionOne", "interface": "admin", "id": "9bbbac3ebf04425fbf6f850c61727c36"},
475
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
476
- "regionOne", "interface": "public", "id": "a4f073188f834e08a541f3172afbf2aa"},
477
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
478
- "regionOne", "interface": "internal", "id": "fe25750a2f23451186b78cafeb2500c2"}],
479
- "type": "identity", "id": "dcf4906057004977bdabba7de167c923", "name": "keystone"},
480
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
481
- "region": "regionOne", "interface": "internal", "id": "09f14e579c22456498293c45deafc29c"},
482
- {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
483
- "region": "regionOne", "interface": "public", "id": "39b2796eadd2410295b3f0b1398db694"},
484
- {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
485
- "region": "regionOne", "interface": "admin", "id": "7ec9decfbe5b46ee850619c1752bfa67"}],
486
- "type": "data-processing", "id": "ea7797ce177d4bfd8e360de675c71f35", "name":
487
- "sahara"}], "user": {"domain": {"id": "default", "name": "Default"}, "id":
488
- "1e50c2f0995446fd9b135a1a549cabdb", "name": "admin"}, "audit_ids": ["IUty163pT6qWnwO7UAmdKQ"],
489
- "issued_at": "2016-12-10T01:11:48.932777Z"}}'
228
+ string: '{"server": {"security_groups": [{"name": "default"}], "OS-DCF:diskConfig":
229
+ "MANUAL", "id": "69caa692-4fe3-4acc-9b8c-865ef973ccbe", "links": [{"href":
230
+ "http://192.0.2.6:8774/v2.1/servers/69caa692-4fe3-4acc-9b8c-865ef973ccbe",
231
+ "rel": "self"}, {"href": "http://192.0.2.6:8774/servers/69caa692-4fe3-4acc-9b8c-865ef973ccbe",
232
+ "rel": "bookmark"}], "adminPass": "hWnNd88itWAL"}}'
490
233
  http_version:
491
- recorded_at: Fri, 17 Feb 2017 06:15:11 GMT
234
+ recorded_at: Tue, 06 Feb 2018 10:50:26 GMT
492
235
  - request:
493
236
  method: get
494
- uri: http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca/servers
237
+ uri: http://192.0.2.6:8774/v2.1/servers
495
238
  body:
496
239
  encoding: US-ASCII
497
240
  string: ''
498
241
  headers:
499
- Content-Type:
500
- - application/json
501
242
  Accept:
243
+ - application/json; q=1.0
244
+ Content-Type:
502
245
  - application/json
503
- X-Auth-Token:
504
- - 833ec66536114df89e1490483869bfcf
505
- X-Openstack-Nova-Api-Version:
506
- - '2.25'
507
- X-Openstack-Api-Version:
508
- - compute 2.25
509
246
  Accept-Encoding:
510
247
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
511
248
  User-Agent:
512
249
  - Ruby
250
+ X-Auth-Token:
251
+ - gAAAAABaeYhxoHMkreJurXUWJfEXeHzmk9c72zu6IJeDL37FXvBN6cUGNbOZIntK20y7pYeGRz-s6493D6tG1-WkKQpSrbhInxf_n76magyZoMX5EKvKkYRaucZrVstwZlSNVeXG6BrMoKu40cMBv6ttSYlIXpm_iGVXEtOMFOxdpfTy8tQ7C4Y
513
252
  response:
514
253
  status:
515
254
  code: 200
516
255
  message: OK
517
- headers:
518
- Content-Length:
519
- - '721'
520
- Content-Type:
521
- - application/json
522
- X-Openstack-Nova-Api-Version:
523
- - '2.25'
524
- Vary:
525
- - X-OpenStack-Nova-API-Version
526
- X-Compute-Request-Id:
527
- - req-a0a1d3c8-efbc-4f4b-9d2a-1dbe484b4b5c
528
- Date:
529
- - Sat, 10 Dec 2016 01:11:49 GMT
530
- body:
531
- encoding: UTF-8
532
- string: '{"servers": [{"id": "d20888e5-736c-4bf8-92f2-e5a0209886a2", "links":
533
- [{"href": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca/servers/d20888e5-736c-4bf8-92f2-e5a0209886a2",
534
- "rel": "self"}, {"href": "http://192.0.2.21:8774/48985e6b8da145699d411f12a3459fca/servers/d20888e5-736c-4bf8-92f2-e5a0209886a2",
535
- "rel": "bookmark"}], "name": "test_create_server"}, {"id": "34d1072a-d954-481e-8057-cb07deb6f9ed",
536
- "links": [{"href": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca/servers/34d1072a-d954-481e-8057-cb07deb6f9ed",
537
- "rel": "self"}, {"href": "http://192.0.2.21:8774/48985e6b8da145699d411f12a3459fca/servers/34d1072a-d954-481e-8057-cb07deb6f9ed",
538
- "rel": "bookmark"}], "name": "overcloud-test"}]}'
539
- http_version:
540
- recorded_at: Fri, 17 Feb 2017 06:15:11 GMT
541
- - request:
542
- method: post
543
- uri: http://192.0.2.21:5000/v3/auth/tokens
544
- body:
545
- encoding: UTF-8
546
- string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"admin","domain":{"id":"default"},"password":"CJk9hb2ZFR96Ypu74KFFGWuhv"}}},"scope":{"project":{"name":"admin","domain":{"id":"default"}}}}}'
547
- headers:
548
- Content-Type:
549
- - application/json
550
- Accept:
551
- - application/json
552
- Accept-Encoding:
553
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
554
- User-Agent:
555
- - Ruby
556
- response:
557
- status:
558
- code: 201
559
- message: Created
560
256
  headers:
561
257
  Date:
562
- - Sat, 10 Dec 2016 01:11:49 GMT
258
+ - Tue, 06 Feb 2018 10:50:26 GMT
563
259
  Server:
564
- - Apache/2.4.6 (Red Hat Enterprise Linux)
565
- X-Subject-Token:
566
- - b9edc164d8b54d799cd6383c24c6c6ce
260
+ - Apache
261
+ Openstack-Api-Version:
262
+ - compute 2.1
263
+ X-Openstack-Nova-Api-Version:
264
+ - '2.1'
567
265
  Vary:
568
- - X-Auth-Token
266
+ - OpenStack-API-Version,X-OpenStack-Nova-API-Version,Accept-Encoding
569
267
  X-Openstack-Request-Id:
570
- - req-33e8e123-60db-4095-8823-def9977747dd
268
+ - req-cfe3af2e-121c-44bb-b035-ef3dd80d775f
269
+ X-Compute-Request-Id:
270
+ - req-cfe3af2e-121c-44bb-b035-ef3dd80d775f
571
271
  Content-Length:
572
- - '8373'
272
+ - '165'
573
273
  Content-Type:
574
274
  - application/json
575
275
  body:
576
- encoding: UTF-8
577
- string: '{"token": {"methods": ["password"], "roles": [{"id": "362084a241d94d56b6371f6cb1c87abf",
578
- "name": "admin"}], "expires_at": "2016-12-10T02:11:49.168519Z", "project":
579
- {"domain": {"id": "default", "name": "Default"}, "id": "48985e6b8da145699d411f12a3459fca",
580
- "name": "admin"}, "catalog": [{"endpoints": [{"region_id": "regionOne", "url":
581
- "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca", "region":
582
- "regionOne", "interface": "internal", "id": "09e14aa5f80a4c3d84f20ecef245af13"},
583
- {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
584
- "region": "regionOne", "interface": "public", "id": "8beeb2f5570f4e668bb9df77105c396d"},
585
- {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
586
- "region": "regionOne", "interface": "admin", "id": "d368b97fae184bba9fdd2213287a327b"}],
587
- "type": "compute", "id": "1a96b84b844a4c028f22b7da27501c0d", "name": "nova"},
588
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
589
- "region": "regionOne", "interface": "admin", "id": "3e02c6f778ba4ab38476fff972c269c8"},
590
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
591
- "region": "regionOne", "interface": "public", "id": "6483567da043458fb0bc734c39908f2f"},
592
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
593
- "region": "regionOne", "interface": "internal", "id": "ad95dbf1f99a4fbda130bdcc71b81c15"}],
594
- "type": "volume", "id": "1fb40dbf60ae483f853764381c1c6bab", "name": "cinder"},
595
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9696/",
596
- "region": "regionOne", "interface": "admin", "id": "029a7263b7e14ebe8f10a0033b636ed9"},
597
- {"region_id": "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne",
598
- "interface": "public", "id": "a8e4debb78ed4aef9989ef07780abb46"}, {"region_id":
599
- "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne", "interface":
600
- "internal", "id": "b188a6216018481d8b1f6f9f41e69354"}], "type": "network",
601
- "id": "2358e09f2ee14eca9b047cc3c2ca62f8", "name": "neutron"}, {"endpoints":
602
- [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v3", "region":
603
- "regionOne", "interface": "admin", "id": "0ede2537de2644199f649bb566015c2c"},
604
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne",
605
- "interface": "internal", "id": "2220349ef81d4b8fb678485c81f2a214"}, {"region_id":
606
- "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne", "interface":
607
- "public", "id": "9b84ce6363324320af67511b995d6e32"}], "type": "identity",
608
- "id": "2901e458d8b74d2399a041b5b64cb8d1", "name": "identity_v3"}, {"endpoints":
609
- [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
610
- "region": "regionOne", "interface": "public", "id": "45c91d23e63648308e45e05944a530b9"},
611
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
612
- "region": "regionOne", "interface": "admin", "id": "648693e76f00499289fc77ea6eea12eb"},
613
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
614
- "region": "regionOne", "interface": "internal", "id": "ca2d606db4694c80802398bea56b8d7c"}],
615
- "type": "volumev2", "id": "454c392dbb6d44bdb8a736a73628a8c4", "name": "cinderv2"},
616
- {"endpoints": [], "type": "identity_v3", "id": "6f3b70e1db1b4ce692f558bc7fa2dfd7",
617
- "name": "keystone_v3"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
618
- "region": "regionOne", "interface": "internal", "id": "9ee36bdd422c4d04b1737b38079a7160"},
619
- {"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1", "region": "regionOne",
620
- "interface": "admin", "id": "bc34638cfdae4cc1ae168c283e4e915a"}, {"region_id":
621
- "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
622
- "region": "regionOne", "interface": "public", "id": "d41709fb49114560b459300f661bb3ed"}],
623
- "type": "object-store", "id": "8e795505992141c1b32c1f9138b47b98", "name":
624
- "swift"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
625
- "region": "regionOne", "interface": "admin", "id": "04a4bcb47c774cf4b776dd330ec90ac7"},
626
- {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
627
- "region": "regionOne", "interface": "internal", "id": "39f306a869084899af052b3d7a85701f"},
628
- {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
629
- "region": "regionOne", "interface": "public", "id": "b37cfb8813c649ca932b74717a4924dc"}],
630
- "type": "orchestration", "id": "a8e72740ce92456ab392a75375ec9df7", "name":
631
- "heat"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8042/",
632
- "region": "regionOne", "interface": "internal", "id": "2bd9d0c1fc544f078c2fef39a5f4decd"},
633
- {"region_id": "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne",
634
- "interface": "admin", "id": "9c3ac290cf5944e9957f387987a6d7e8"}, {"region_id":
635
- "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne", "interface":
636
- "public", "id": "b8345563ada3461a8f871d897bae1c60"}], "type": "alarming",
637
- "id": "afce35c3b5c640658578063bcb52fe0e", "name": "aodh"}, {"endpoints": [{"region_id":
638
- "regionOne", "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface":
639
- "public", "id": "0a8c20af41384e9b94ffbd266e69f8b0"}, {"region_id": "regionOne",
640
- "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface": "admin",
641
- "id": "407e04f068d64cc49c8beb612087d60c"}, {"region_id": "regionOne", "url":
642
- "http://192.0.2.21:8777/", "region": "regionOne", "interface": "internal",
643
- "id": "5506ecfd12e04e9fae93a16dd7cd473e"}], "type": "metering", "id": "afde6b4f37d1406d83939829e87fbfb9",
644
- "name": "ceilometer"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9292/",
645
- "region": "regionOne", "interface": "public", "id": "1b37c9b615634b9ba354acab8e797bd5"},
646
- {"region_id": "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne",
647
- "interface": "admin", "id": "24ed5cb4e2104b9796a2529a21de04ac"}, {"region_id":
648
- "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne", "interface":
649
- "internal", "id": "8493c76b6a1f400b80e20a11e3ac9e8d"}], "type": "image", "id":
650
- "be4dfdcf14ef48039edf82ef5ae1629e", "name": "glance"}, {"endpoints": [{"region_id":
651
- "regionOne", "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface":
652
- "admin", "id": "709ff9a3f13848209b8934bb1f6dec26"}, {"region_id": "regionOne",
653
- "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface": "internal",
654
- "id": "d51d46cd35f941df88f5508b3e879777"}, {"region_id": "regionOne", "url":
655
- "http://192.0.2.21:8041/", "region": "regionOne", "interface": "public", "id":
656
- "fd3c88b22fab4df58cd629f174fd2e3b"}], "type": "metric", "id": "c2b4bf300bd84cfba6d9cb8c03874c15",
657
- "name": "gnocchi"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v2.0",
658
- "region": "regionOne", "interface": "admin", "id": "9bbbac3ebf04425fbf6f850c61727c36"},
659
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
660
- "regionOne", "interface": "public", "id": "a4f073188f834e08a541f3172afbf2aa"},
661
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
662
- "regionOne", "interface": "internal", "id": "fe25750a2f23451186b78cafeb2500c2"}],
663
- "type": "identity", "id": "dcf4906057004977bdabba7de167c923", "name": "keystone"},
664
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
665
- "region": "regionOne", "interface": "internal", "id": "09f14e579c22456498293c45deafc29c"},
666
- {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
667
- "region": "regionOne", "interface": "public", "id": "39b2796eadd2410295b3f0b1398db694"},
668
- {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
669
- "region": "regionOne", "interface": "admin", "id": "7ec9decfbe5b46ee850619c1752bfa67"}],
670
- "type": "data-processing", "id": "ea7797ce177d4bfd8e360de675c71f35", "name":
671
- "sahara"}], "user": {"domain": {"id": "default", "name": "Default"}, "id":
672
- "1e50c2f0995446fd9b135a1a549cabdb", "name": "admin"}, "audit_ids": ["AKi6CAAxQKO0QGDGssWSFw"],
673
- "issued_at": "2016-12-10T01:11:49.168556Z"}}'
276
+ encoding: ASCII-8BIT
277
+ string: '{"servers": [{"id": "69caa692-4fe3-4acc-9b8c-865ef973ccbe", "links":
278
+ [{"href": "http://192.0.2.6:8774/v2.1/servers/69caa692-4fe3-4acc-9b8c-865ef973ccbe",
279
+ "rel": "self"}, {"href": "http://192.0.2.6:8774/servers/69caa692-4fe3-4acc-9b8c-865ef973ccbe",
280
+ "rel": "bookmark"}], "name": "test_create_server"}]}'
674
281
  http_version:
675
- recorded_at: Fri, 17 Feb 2017 06:15:11 GMT
282
+ recorded_at: Tue, 06 Feb 2018 10:50:27 GMT
676
283
  - request:
677
284
  method: get
678
- uri: http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca/servers/d20888e5-736c-4bf8-92f2-e5a0209886a2
285
+ uri: http://192.0.2.6:8774/v2.1/servers/69caa692-4fe3-4acc-9b8c-865ef973ccbe
679
286
  body:
680
287
  encoding: US-ASCII
681
288
  string: ''
682
289
  headers:
683
- Content-Type:
684
- - application/json
685
290
  Accept:
291
+ - application/json; q=1.0
292
+ Content-Type:
686
293
  - application/json
687
- X-Auth-Token:
688
- - 833ec66536114df89e1490483869bfcf
689
- X-Openstack-Nova-Api-Version:
690
- - '2.25'
691
- X-Openstack-Api-Version:
692
- - compute 2.25
693
294
  Accept-Encoding:
694
295
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
695
296
  User-Agent:
696
297
  - Ruby
298
+ X-Auth-Token:
299
+ - gAAAAABaeYhxoHMkreJurXUWJfEXeHzmk9c72zu6IJeDL37FXvBN6cUGNbOZIntK20y7pYeGRz-s6493D6tG1-WkKQpSrbhInxf_n76magyZoMX5EKvKkYRaucZrVstwZlSNVeXG6BrMoKu40cMBv6ttSYlIXpm_iGVXEtOMFOxdpfTy8tQ7C4Y
697
300
  response:
698
301
  status:
699
302
  code: 200
700
303
  message: OK
701
304
  headers:
702
- Content-Length:
703
- - '1873'
704
- Content-Type:
705
- - application/json
706
- X-Openstack-Nova-Api-Version:
707
- - '2.25'
708
- Vary:
709
- - X-OpenStack-Nova-API-Version
710
- X-Compute-Request-Id:
711
- - req-cc02ee0a-a883-4470-bec2-a15022ea9622
712
305
  Date:
713
- - Sat, 10 Dec 2016 01:11:49 GMT
714
- body:
715
- encoding: UTF-8
716
- string: '{"server": {"status": "BUILD", "OS-EXT-SRV-ATTR:ramdisk_id": "", "updated":
717
- "2016-12-10T01:11:49Z", "hostId": "09e8ba124eee149a153421f87483391234dbb759b7cd5ac06de32b99",
718
- "OS-EXT-SRV-ATTR:host": "overcloud-compute-1.localdomain", "addresses": {},
719
- "links": [{"href": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca/servers/d20888e5-736c-4bf8-92f2-e5a0209886a2",
720
- "rel": "self"}, {"href": "http://192.0.2.21:8774/48985e6b8da145699d411f12a3459fca/servers/d20888e5-736c-4bf8-92f2-e5a0209886a2",
721
- "rel": "bookmark"}], "key_name": null, "image": {"id": "c091ccf2-a4ae-4fa0-a716-defd6376b5dc",
722
- "links": [{"href": "http://192.0.2.21:8774/48985e6b8da145699d411f12a3459fca/images/c091ccf2-a4ae-4fa0-a716-defd6376b5dc",
723
- "rel": "bookmark"}]}, "OS-EXT-SRV-ATTR:user_data": null, "OS-EXT-STS:task_state":
724
- null, "OS-EXT-STS:vm_state": "building", "OS-EXT-SRV-ATTR:instance_name":
725
- "instance-00000026", "OS-EXT-SRV-ATTR:root_device_name": null, "OS-SRV-USG:launched_at":
726
- null, "locked": false, "flavor": {"id": "1", "links": [{"href": "http://192.0.2.21:8774/48985e6b8da145699d411f12a3459fca/flavors/1",
727
- "rel": "bookmark"}]}, "id": "d20888e5-736c-4bf8-92f2-e5a0209886a2", "description":
728
- null, "OS-EXT-SRV-ATTR:kernel_id": "", "host_status": "UP", "OS-EXT-AZ:availability_zone":
729
- "nova", "user_id": "1e50c2f0995446fd9b135a1a549cabdb", "name": "test_create_server",
730
- "OS-EXT-SRV-ATTR:launch_index": 0, "created": "2016-12-10T01:11:48Z", "tenant_id":
731
- "48985e6b8da145699d411f12a3459fca", "OS-DCF:diskConfig": "MANUAL", "OS-EXT-SRV-ATTR:hypervisor_hostname":
732
- "overcloud-compute-1.localdomain", "os-extended-volumes:volumes_attached":
733
- [], "accessIPv4": "", "accessIPv6": "", "OS-EXT-SRV-ATTR:reservation_id":
734
- "r-rsn3wljx", "OS-EXT-SRV-ATTR:hostname": "test-create-server", "progress":
735
- 0, "OS-EXT-STS:power_state": 0, "config_drive": "", "OS-SRV-USG:terminated_at":
736
- null, "metadata": {}}}'
737
- http_version:
738
- recorded_at: Fri, 17 Feb 2017 06:15:12 GMT
739
- - request:
740
- method: post
741
- uri: http://192.0.2.21:5000/v3/auth/tokens
742
- body:
743
- encoding: UTF-8
744
- string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"admin","domain":{"id":"default"},"password":"CJk9hb2ZFR96Ypu74KFFGWuhv"}}},"scope":{"project":{"name":"admin","domain":{"id":"default"}}}}}'
745
- headers:
746
- Content-Type:
747
- - application/json
748
- Accept:
749
- - application/json
750
- Accept-Encoding:
751
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
752
- User-Agent:
753
- - Ruby
754
- response:
755
- status:
756
- code: 201
757
- message: Created
758
- headers:
759
- Date:
760
- - Sat, 10 Dec 2016 01:11:49 GMT
306
+ - Tue, 06 Feb 2018 10:50:27 GMT
761
307
  Server:
762
- - Apache/2.4.6 (Red Hat Enterprise Linux)
763
- X-Subject-Token:
764
- - d9980a529b264d918237a84c4fc7d1ee
308
+ - Apache
309
+ Openstack-Api-Version:
310
+ - compute 2.1
311
+ X-Openstack-Nova-Api-Version:
312
+ - '2.1'
765
313
  Vary:
766
- - X-Auth-Token
314
+ - OpenStack-API-Version,X-OpenStack-Nova-API-Version,Accept-Encoding
767
315
  X-Openstack-Request-Id:
768
- - req-3b081c5b-fdad-4274-a8e1-662c584b2a9a
316
+ - req-268c6904-e6eb-43b4-8e55-600aa53917ad
317
+ X-Compute-Request-Id:
318
+ - req-268c6904-e6eb-43b4-8e55-600aa53917ad
769
319
  Content-Length:
770
- - '8373'
320
+ - '587'
771
321
  Content-Type:
772
322
  - application/json
773
323
  body:
774
- encoding: UTF-8
775
- string: '{"token": {"methods": ["password"], "roles": [{"id": "362084a241d94d56b6371f6cb1c87abf",
776
- "name": "admin"}], "expires_at": "2016-12-10T02:11:49.617284Z", "project":
777
- {"domain": {"id": "default", "name": "Default"}, "id": "48985e6b8da145699d411f12a3459fca",
778
- "name": "admin"}, "catalog": [{"endpoints": [{"region_id": "regionOne", "url":
779
- "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca", "region":
780
- "regionOne", "interface": "internal", "id": "09e14aa5f80a4c3d84f20ecef245af13"},
781
- {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
782
- "region": "regionOne", "interface": "public", "id": "8beeb2f5570f4e668bb9df77105c396d"},
783
- {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
784
- "region": "regionOne", "interface": "admin", "id": "d368b97fae184bba9fdd2213287a327b"}],
785
- "type": "compute", "id": "1a96b84b844a4c028f22b7da27501c0d", "name": "nova"},
786
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
787
- "region": "regionOne", "interface": "admin", "id": "3e02c6f778ba4ab38476fff972c269c8"},
788
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
789
- "region": "regionOne", "interface": "public", "id": "6483567da043458fb0bc734c39908f2f"},
790
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
791
- "region": "regionOne", "interface": "internal", "id": "ad95dbf1f99a4fbda130bdcc71b81c15"}],
792
- "type": "volume", "id": "1fb40dbf60ae483f853764381c1c6bab", "name": "cinder"},
793
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9696/",
794
- "region": "regionOne", "interface": "admin", "id": "029a7263b7e14ebe8f10a0033b636ed9"},
795
- {"region_id": "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne",
796
- "interface": "public", "id": "a8e4debb78ed4aef9989ef07780abb46"}, {"region_id":
797
- "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne", "interface":
798
- "internal", "id": "b188a6216018481d8b1f6f9f41e69354"}], "type": "network",
799
- "id": "2358e09f2ee14eca9b047cc3c2ca62f8", "name": "neutron"}, {"endpoints":
800
- [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v3", "region":
801
- "regionOne", "interface": "admin", "id": "0ede2537de2644199f649bb566015c2c"},
802
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne",
803
- "interface": "internal", "id": "2220349ef81d4b8fb678485c81f2a214"}, {"region_id":
804
- "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne", "interface":
805
- "public", "id": "9b84ce6363324320af67511b995d6e32"}], "type": "identity",
806
- "id": "2901e458d8b74d2399a041b5b64cb8d1", "name": "identity_v3"}, {"endpoints":
807
- [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
808
- "region": "regionOne", "interface": "public", "id": "45c91d23e63648308e45e05944a530b9"},
809
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
810
- "region": "regionOne", "interface": "admin", "id": "648693e76f00499289fc77ea6eea12eb"},
811
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
812
- "region": "regionOne", "interface": "internal", "id": "ca2d606db4694c80802398bea56b8d7c"}],
813
- "type": "volumev2", "id": "454c392dbb6d44bdb8a736a73628a8c4", "name": "cinderv2"},
814
- {"endpoints": [], "type": "identity_v3", "id": "6f3b70e1db1b4ce692f558bc7fa2dfd7",
815
- "name": "keystone_v3"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
816
- "region": "regionOne", "interface": "internal", "id": "9ee36bdd422c4d04b1737b38079a7160"},
817
- {"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1", "region": "regionOne",
818
- "interface": "admin", "id": "bc34638cfdae4cc1ae168c283e4e915a"}, {"region_id":
819
- "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
820
- "region": "regionOne", "interface": "public", "id": "d41709fb49114560b459300f661bb3ed"}],
821
- "type": "object-store", "id": "8e795505992141c1b32c1f9138b47b98", "name":
822
- "swift"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
823
- "region": "regionOne", "interface": "admin", "id": "04a4bcb47c774cf4b776dd330ec90ac7"},
824
- {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
825
- "region": "regionOne", "interface": "internal", "id": "39f306a869084899af052b3d7a85701f"},
826
- {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
827
- "region": "regionOne", "interface": "public", "id": "b37cfb8813c649ca932b74717a4924dc"}],
828
- "type": "orchestration", "id": "a8e72740ce92456ab392a75375ec9df7", "name":
829
- "heat"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8042/",
830
- "region": "regionOne", "interface": "internal", "id": "2bd9d0c1fc544f078c2fef39a5f4decd"},
831
- {"region_id": "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne",
832
- "interface": "admin", "id": "9c3ac290cf5944e9957f387987a6d7e8"}, {"region_id":
833
- "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne", "interface":
834
- "public", "id": "b8345563ada3461a8f871d897bae1c60"}], "type": "alarming",
835
- "id": "afce35c3b5c640658578063bcb52fe0e", "name": "aodh"}, {"endpoints": [{"region_id":
836
- "regionOne", "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface":
837
- "public", "id": "0a8c20af41384e9b94ffbd266e69f8b0"}, {"region_id": "regionOne",
838
- "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface": "admin",
839
- "id": "407e04f068d64cc49c8beb612087d60c"}, {"region_id": "regionOne", "url":
840
- "http://192.0.2.21:8777/", "region": "regionOne", "interface": "internal",
841
- "id": "5506ecfd12e04e9fae93a16dd7cd473e"}], "type": "metering", "id": "afde6b4f37d1406d83939829e87fbfb9",
842
- "name": "ceilometer"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9292/",
843
- "region": "regionOne", "interface": "public", "id": "1b37c9b615634b9ba354acab8e797bd5"},
844
- {"region_id": "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne",
845
- "interface": "admin", "id": "24ed5cb4e2104b9796a2529a21de04ac"}, {"region_id":
846
- "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne", "interface":
847
- "internal", "id": "8493c76b6a1f400b80e20a11e3ac9e8d"}], "type": "image", "id":
848
- "be4dfdcf14ef48039edf82ef5ae1629e", "name": "glance"}, {"endpoints": [{"region_id":
849
- "regionOne", "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface":
850
- "admin", "id": "709ff9a3f13848209b8934bb1f6dec26"}, {"region_id": "regionOne",
851
- "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface": "internal",
852
- "id": "d51d46cd35f941df88f5508b3e879777"}, {"region_id": "regionOne", "url":
853
- "http://192.0.2.21:8041/", "region": "regionOne", "interface": "public", "id":
854
- "fd3c88b22fab4df58cd629f174fd2e3b"}], "type": "metric", "id": "c2b4bf300bd84cfba6d9cb8c03874c15",
855
- "name": "gnocchi"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v2.0",
856
- "region": "regionOne", "interface": "admin", "id": "9bbbac3ebf04425fbf6f850c61727c36"},
857
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
858
- "regionOne", "interface": "public", "id": "a4f073188f834e08a541f3172afbf2aa"},
859
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
860
- "regionOne", "interface": "internal", "id": "fe25750a2f23451186b78cafeb2500c2"}],
861
- "type": "identity", "id": "dcf4906057004977bdabba7de167c923", "name": "keystone"},
862
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
863
- "region": "regionOne", "interface": "internal", "id": "09f14e579c22456498293c45deafc29c"},
864
- {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
865
- "region": "regionOne", "interface": "public", "id": "39b2796eadd2410295b3f0b1398db694"},
866
- {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
867
- "region": "regionOne", "interface": "admin", "id": "7ec9decfbe5b46ee850619c1752bfa67"}],
868
- "type": "data-processing", "id": "ea7797ce177d4bfd8e360de675c71f35", "name":
869
- "sahara"}], "user": {"domain": {"id": "default", "name": "Default"}, "id":
870
- "1e50c2f0995446fd9b135a1a549cabdb", "name": "admin"}, "audit_ids": ["Zfu_2GLRRhSdrhwjLNm8Cw"],
871
- "issued_at": "2016-12-10T01:11:49.617326Z"}}'
324
+ encoding: ASCII-8BIT
325
+ string: '{"server": {"OS-EXT-STS:task_state": "scheduling", "addresses": {},
326
+ "links": [{"href": "http://192.0.2.6:8774/v2.1/servers/69caa692-4fe3-4acc-9b8c-865ef973ccbe",
327
+ "rel": "self"}, {"href": "http://192.0.2.6:8774/servers/69caa692-4fe3-4acc-9b8c-865ef973ccbe",
328
+ "rel": "bookmark"}], "image": {"id": "07bd625e-d3ae-415c-bc82-46d66168378a",
329
+ "links": [{"href": "http://192.0.2.6:8774/images/07bd625e-d3ae-415c-bc82-46d66168378a",
330
+ "rel": "bookmark"}]}, "OS-EXT-STS:vm_state": "building", "OS-EXT-SRV-ATTR:instance_name":
331
+ "", "OS-SRV-USG:launched_at": null, "flavor": {"id": "1", "links": [{"href":
332
+ "http://192.0.2.6:8774/flavors/1", "rel": "bookmark"}]}, "id": "69caa692-4fe3-4acc-9b8c-865ef973ccbe",
333
+ "user_id": "56d5f121c4b94edd90d57703dad4247a", "OS-DCF:diskConfig": "MANUAL",
334
+ "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state":
335
+ 0, "OS-EXT-AZ:availability_zone": "", "config_drive": "", "status": "BUILD",
336
+ "updated": "2018-02-06T10:50:27Z", "hostId": "", "OS-EXT-SRV-ATTR:host": null,
337
+ "OS-SRV-USG:terminated_at": null, "key_name": null, "OS-EXT-SRV-ATTR:hypervisor_hostname":
338
+ null, "name": "test_create_server", "created": "2018-02-06T10:50:26Z", "tenant_id":
339
+ "59c8c1f16fac4c51901777909300a613", "os-extended-volumes:volumes_attached":
340
+ [], "metadata": {}}}'
872
341
  http_version:
873
- recorded_at: Fri, 17 Feb 2017 06:15:12 GMT
342
+ recorded_at: Tue, 06 Feb 2018 10:50:27 GMT
874
343
  - request:
875
344
  method: put
876
- uri: http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca/servers/d20888e5-736c-4bf8-92f2-e5a0209886a2
345
+ uri: http://192.0.2.6:8774/v2.1/servers/69caa692-4fe3-4acc-9b8c-865ef973ccbe
877
346
  body:
878
347
  encoding: UTF-8
879
348
  string: '{"server":{"name":"test_updated_server"}}'
880
349
  headers:
881
- Content-Type:
882
- - application/json
883
350
  Accept:
351
+ - application/json; q=1.0
352
+ Content-Type:
884
353
  - application/json
885
- X-Auth-Token:
886
- - 833ec66536114df89e1490483869bfcf
887
- X-Openstack-Nova-Api-Version:
888
- - '2.25'
889
- X-Openstack-Api-Version:
890
- - compute 2.25
891
354
  Accept-Encoding:
892
355
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
893
356
  User-Agent:
894
357
  - Ruby
358
+ X-Auth-Token:
359
+ - gAAAAABaeYhxoHMkreJurXUWJfEXeHzmk9c72zu6IJeDL37FXvBN6cUGNbOZIntK20y7pYeGRz-s6493D6tG1-WkKQpSrbhInxf_n76magyZoMX5EKvKkYRaucZrVstwZlSNVeXG6BrMoKu40cMBv6ttSYlIXpm_iGVXEtOMFOxdpfTy8tQ7C4Y
895
360
  response:
896
361
  status:
897
362
  code: 200
898
363
  message: OK
899
- headers:
900
- Content-Length:
901
- - '1107'
902
- Content-Type:
903
- - application/json
904
- X-Openstack-Nova-Api-Version:
905
- - '2.25'
906
- Vary:
907
- - X-OpenStack-Nova-API-Version
908
- X-Compute-Request-Id:
909
- - req-d1959f75-621f-4572-b28d-88852d7d0d21
910
- Date:
911
- - Sat, 10 Dec 2016 01:11:49 GMT
912
- body:
913
- encoding: UTF-8
914
- string: '{"server": {"status": "BUILD", "updated": "2016-12-10T01:11:49Z", "hostId":
915
- "09e8ba124eee149a153421f87483391234dbb759b7cd5ac06de32b99", "addresses": {},
916
- "links": [{"href": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca/servers/d20888e5-736c-4bf8-92f2-e5a0209886a2",
917
- "rel": "self"}, {"href": "http://192.0.2.21:8774/48985e6b8da145699d411f12a3459fca/servers/d20888e5-736c-4bf8-92f2-e5a0209886a2",
918
- "rel": "bookmark"}], "image": {"id": "c091ccf2-a4ae-4fa0-a716-defd6376b5dc",
919
- "links": [{"href": "http://192.0.2.21:8774/48985e6b8da145699d411f12a3459fca/images/c091ccf2-a4ae-4fa0-a716-defd6376b5dc",
920
- "rel": "bookmark"}]}, "locked": false, "flavor": {"id": "1", "links": [{"href":
921
- "http://192.0.2.21:8774/48985e6b8da145699d411f12a3459fca/flavors/1", "rel":
922
- "bookmark"}]}, "id": "d20888e5-736c-4bf8-92f2-e5a0209886a2", "description":
923
- null, "user_id": "1e50c2f0995446fd9b135a1a549cabdb", "name": "test_updated_server",
924
- "created": "2016-12-10T01:11:48Z", "tenant_id": "48985e6b8da145699d411f12a3459fca",
925
- "OS-DCF:diskConfig": "MANUAL", "accessIPv4": "", "accessIPv6": "", "progress":
926
- 0, "metadata": {}}}'
927
- http_version:
928
- recorded_at: Fri, 17 Feb 2017 06:15:12 GMT
929
- - request:
930
- method: post
931
- uri: http://192.0.2.21:5000/v3/auth/tokens
932
- body:
933
- encoding: UTF-8
934
- string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"admin","domain":{"id":"default"},"password":"CJk9hb2ZFR96Ypu74KFFGWuhv"}}},"scope":{"project":{"name":"admin","domain":{"id":"default"}}}}}'
935
- headers:
936
- Content-Type:
937
- - application/json
938
- Accept:
939
- - application/json
940
- Accept-Encoding:
941
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
942
- User-Agent:
943
- - Ruby
944
- response:
945
- status:
946
- code: 201
947
- message: Created
948
364
  headers:
949
365
  Date:
950
- - Sat, 10 Dec 2016 01:11:49 GMT
366
+ - Tue, 06 Feb 2018 10:50:27 GMT
951
367
  Server:
952
- - Apache/2.4.6 (Red Hat Enterprise Linux)
953
- X-Subject-Token:
954
- - e60e371842f04de8915da7f7d2990b1c
368
+ - Apache
369
+ Openstack-Api-Version:
370
+ - compute 2.1
371
+ X-Openstack-Nova-Api-Version:
372
+ - '2.1'
955
373
  Vary:
956
- - X-Auth-Token
374
+ - OpenStack-API-Version,X-OpenStack-Nova-API-Version,Accept-Encoding
957
375
  X-Openstack-Request-Id:
958
- - req-26a9c2af-5cae-416c-a265-c702c35aaeb7
376
+ - req-2cace18d-2832-4a30-90e8-d6e077728fa1
377
+ X-Compute-Request-Id:
378
+ - req-2cace18d-2832-4a30-90e8-d6e077728fa1
959
379
  Content-Length:
960
- - '8373'
380
+ - '413'
961
381
  Content-Type:
962
382
  - application/json
963
383
  body:
964
- encoding: UTF-8
965
- string: '{"token": {"methods": ["password"], "roles": [{"id": "362084a241d94d56b6371f6cb1c87abf",
966
- "name": "admin"}], "expires_at": "2016-12-10T02:11:50.088277Z", "project":
967
- {"domain": {"id": "default", "name": "Default"}, "id": "48985e6b8da145699d411f12a3459fca",
968
- "name": "admin"}, "catalog": [{"endpoints": [{"region_id": "regionOne", "url":
969
- "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca", "region":
970
- "regionOne", "interface": "internal", "id": "09e14aa5f80a4c3d84f20ecef245af13"},
971
- {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
972
- "region": "regionOne", "interface": "public", "id": "8beeb2f5570f4e668bb9df77105c396d"},
973
- {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
974
- "region": "regionOne", "interface": "admin", "id": "d368b97fae184bba9fdd2213287a327b"}],
975
- "type": "compute", "id": "1a96b84b844a4c028f22b7da27501c0d", "name": "nova"},
976
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
977
- "region": "regionOne", "interface": "admin", "id": "3e02c6f778ba4ab38476fff972c269c8"},
978
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
979
- "region": "regionOne", "interface": "public", "id": "6483567da043458fb0bc734c39908f2f"},
980
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
981
- "region": "regionOne", "interface": "internal", "id": "ad95dbf1f99a4fbda130bdcc71b81c15"}],
982
- "type": "volume", "id": "1fb40dbf60ae483f853764381c1c6bab", "name": "cinder"},
983
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9696/",
984
- "region": "regionOne", "interface": "admin", "id": "029a7263b7e14ebe8f10a0033b636ed9"},
985
- {"region_id": "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne",
986
- "interface": "public", "id": "a8e4debb78ed4aef9989ef07780abb46"}, {"region_id":
987
- "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne", "interface":
988
- "internal", "id": "b188a6216018481d8b1f6f9f41e69354"}], "type": "network",
989
- "id": "2358e09f2ee14eca9b047cc3c2ca62f8", "name": "neutron"}, {"endpoints":
990
- [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v3", "region":
991
- "regionOne", "interface": "admin", "id": "0ede2537de2644199f649bb566015c2c"},
992
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne",
993
- "interface": "internal", "id": "2220349ef81d4b8fb678485c81f2a214"}, {"region_id":
994
- "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne", "interface":
995
- "public", "id": "9b84ce6363324320af67511b995d6e32"}], "type": "identity",
996
- "id": "2901e458d8b74d2399a041b5b64cb8d1", "name": "identity_v3"}, {"endpoints":
997
- [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
998
- "region": "regionOne", "interface": "public", "id": "45c91d23e63648308e45e05944a530b9"},
999
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
1000
- "region": "regionOne", "interface": "admin", "id": "648693e76f00499289fc77ea6eea12eb"},
1001
- {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
1002
- "region": "regionOne", "interface": "internal", "id": "ca2d606db4694c80802398bea56b8d7c"}],
1003
- "type": "volumev2", "id": "454c392dbb6d44bdb8a736a73628a8c4", "name": "cinderv2"},
1004
- {"endpoints": [], "type": "identity_v3", "id": "6f3b70e1db1b4ce692f558bc7fa2dfd7",
1005
- "name": "keystone_v3"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
1006
- "region": "regionOne", "interface": "internal", "id": "9ee36bdd422c4d04b1737b38079a7160"},
1007
- {"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1", "region": "regionOne",
1008
- "interface": "admin", "id": "bc34638cfdae4cc1ae168c283e4e915a"}, {"region_id":
1009
- "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
1010
- "region": "regionOne", "interface": "public", "id": "d41709fb49114560b459300f661bb3ed"}],
1011
- "type": "object-store", "id": "8e795505992141c1b32c1f9138b47b98", "name":
1012
- "swift"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
1013
- "region": "regionOne", "interface": "admin", "id": "04a4bcb47c774cf4b776dd330ec90ac7"},
1014
- {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
1015
- "region": "regionOne", "interface": "internal", "id": "39f306a869084899af052b3d7a85701f"},
1016
- {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
1017
- "region": "regionOne", "interface": "public", "id": "b37cfb8813c649ca932b74717a4924dc"}],
1018
- "type": "orchestration", "id": "a8e72740ce92456ab392a75375ec9df7", "name":
1019
- "heat"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8042/",
1020
- "region": "regionOne", "interface": "internal", "id": "2bd9d0c1fc544f078c2fef39a5f4decd"},
1021
- {"region_id": "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne",
1022
- "interface": "admin", "id": "9c3ac290cf5944e9957f387987a6d7e8"}, {"region_id":
1023
- "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne", "interface":
1024
- "public", "id": "b8345563ada3461a8f871d897bae1c60"}], "type": "alarming",
1025
- "id": "afce35c3b5c640658578063bcb52fe0e", "name": "aodh"}, {"endpoints": [{"region_id":
1026
- "regionOne", "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface":
1027
- "public", "id": "0a8c20af41384e9b94ffbd266e69f8b0"}, {"region_id": "regionOne",
1028
- "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface": "admin",
1029
- "id": "407e04f068d64cc49c8beb612087d60c"}, {"region_id": "regionOne", "url":
1030
- "http://192.0.2.21:8777/", "region": "regionOne", "interface": "internal",
1031
- "id": "5506ecfd12e04e9fae93a16dd7cd473e"}], "type": "metering", "id": "afde6b4f37d1406d83939829e87fbfb9",
1032
- "name": "ceilometer"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9292/",
1033
- "region": "regionOne", "interface": "public", "id": "1b37c9b615634b9ba354acab8e797bd5"},
1034
- {"region_id": "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne",
1035
- "interface": "admin", "id": "24ed5cb4e2104b9796a2529a21de04ac"}, {"region_id":
1036
- "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne", "interface":
1037
- "internal", "id": "8493c76b6a1f400b80e20a11e3ac9e8d"}], "type": "image", "id":
1038
- "be4dfdcf14ef48039edf82ef5ae1629e", "name": "glance"}, {"endpoints": [{"region_id":
1039
- "regionOne", "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface":
1040
- "admin", "id": "709ff9a3f13848209b8934bb1f6dec26"}, {"region_id": "regionOne",
1041
- "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface": "internal",
1042
- "id": "d51d46cd35f941df88f5508b3e879777"}, {"region_id": "regionOne", "url":
1043
- "http://192.0.2.21:8041/", "region": "regionOne", "interface": "public", "id":
1044
- "fd3c88b22fab4df58cd629f174fd2e3b"}], "type": "metric", "id": "c2b4bf300bd84cfba6d9cb8c03874c15",
1045
- "name": "gnocchi"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v2.0",
1046
- "region": "regionOne", "interface": "admin", "id": "9bbbac3ebf04425fbf6f850c61727c36"},
1047
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
1048
- "regionOne", "interface": "public", "id": "a4f073188f834e08a541f3172afbf2aa"},
1049
- {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
1050
- "regionOne", "interface": "internal", "id": "fe25750a2f23451186b78cafeb2500c2"}],
1051
- "type": "identity", "id": "dcf4906057004977bdabba7de167c923", "name": "keystone"},
1052
- {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
1053
- "region": "regionOne", "interface": "internal", "id": "09f14e579c22456498293c45deafc29c"},
1054
- {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
1055
- "region": "regionOne", "interface": "public", "id": "39b2796eadd2410295b3f0b1398db694"},
1056
- {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
1057
- "region": "regionOne", "interface": "admin", "id": "7ec9decfbe5b46ee850619c1752bfa67"}],
1058
- "type": "data-processing", "id": "ea7797ce177d4bfd8e360de675c71f35", "name":
1059
- "sahara"}], "user": {"domain": {"id": "default", "name": "Default"}, "id":
1060
- "1e50c2f0995446fd9b135a1a549cabdb", "name": "admin"}, "audit_ids": ["eOUOotmfRji-tEsb5s6org"],
1061
- "issued_at": "2016-12-10T01:11:50.088310Z"}}'
384
+ encoding: ASCII-8BIT
385
+ string: '{"server": {"status": "BUILD", "updated": "2018-02-06T10:50:27Z", "hostId":
386
+ "", "user_id": "56d5f121c4b94edd90d57703dad4247a", "name": "test_updated_server",
387
+ "links": [{"href": "http://192.0.2.6:8774/v2.1/servers/69caa692-4fe3-4acc-9b8c-865ef973ccbe",
388
+ "rel": "self"}, {"href": "http://192.0.2.6:8774/servers/69caa692-4fe3-4acc-9b8c-865ef973ccbe",
389
+ "rel": "bookmark"}], "created": "2018-02-06T10:50:26Z", "tenant_id": "59c8c1f16fac4c51901777909300a613",
390
+ "image": {"id": "07bd625e-d3ae-415c-bc82-46d66168378a", "links": [{"href":
391
+ "http://192.0.2.6:8774/images/07bd625e-d3ae-415c-bc82-46d66168378a", "rel":
392
+ "bookmark"}]}, "OS-DCF:diskConfig": "MANUAL", "addresses": {}, "accessIPv4":
393
+ "", "accessIPv6": "", "progress": 0, "flavor": {"id": "1", "links": [{"href":
394
+ "http://192.0.2.6:8774/flavors/1", "rel": "bookmark"}]}, "id": "69caa692-4fe3-4acc-9b8c-865ef973ccbe",
395
+ "metadata": {}}}'
1062
396
  http_version:
1063
- recorded_at: Fri, 17 Feb 2017 06:15:12 GMT
397
+ recorded_at: Tue, 06 Feb 2018 10:50:27 GMT
1064
398
  - request:
1065
399
  method: delete
1066
- uri: http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca/servers/d20888e5-736c-4bf8-92f2-e5a0209886a2
400
+ uri: http://192.0.2.6:8774/v2.1/servers/69caa692-4fe3-4acc-9b8c-865ef973ccbe
1067
401
  body:
1068
402
  encoding: US-ASCII
1069
403
  string: ''
1070
404
  headers:
1071
- Content-Type:
1072
- - application/json
1073
405
  Accept:
406
+ - application/json; q=1.0
407
+ Content-Type:
1074
408
  - application/json
1075
- X-Auth-Token:
1076
- - 833ec66536114df89e1490483869bfcf
1077
- X-Openstack-Nova-Api-Version:
1078
- - '2.25'
1079
- X-Openstack-Api-Version:
1080
- - compute 2.25
1081
409
  Accept-Encoding:
1082
410
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1083
411
  User-Agent:
1084
412
  - Ruby
413
+ X-Auth-Token:
414
+ - gAAAAABaeYhxoHMkreJurXUWJfEXeHzmk9c72zu6IJeDL37FXvBN6cUGNbOZIntK20y7pYeGRz-s6493D6tG1-WkKQpSrbhInxf_n76magyZoMX5EKvKkYRaucZrVstwZlSNVeXG6BrMoKu40cMBv6ttSYlIXpm_iGVXEtOMFOxdpfTy8tQ7C4Y
1085
415
  response:
1086
416
  status:
1087
417
  code: 204
1088
418
  message: No Content
1089
419
  headers:
1090
- Content-Length:
1091
- - '0'
1092
- Content-Type:
1093
- - application/json
420
+ Date:
421
+ - Tue, 06 Feb 2018 10:50:27 GMT
422
+ Server:
423
+ - Apache
424
+ Openstack-Api-Version:
425
+ - compute 2.1
1094
426
  X-Openstack-Nova-Api-Version:
1095
- - '2.25'
427
+ - '2.1'
1096
428
  Vary:
1097
- - X-OpenStack-Nova-API-Version
429
+ - OpenStack-API-Version,X-OpenStack-Nova-API-Version
430
+ X-Openstack-Request-Id:
431
+ - req-513293d4-f7c7-4bcc-a070-60e8ed11e952
1098
432
  X-Compute-Request-Id:
1099
- - req-572dab11-6b04-4ef9-9ee9-9edb5318221e
1100
- Date:
1101
- - Sat, 10 Dec 2016 01:11:50 GMT
433
+ - req-513293d4-f7c7-4bcc-a070-60e8ed11e952
434
+ Content-Type:
435
+ - application/json
1102
436
  body:
1103
437
  encoding: UTF-8
1104
438
  string: ''
1105
439
  http_version:
1106
- recorded_at: Fri, 17 Feb 2017 06:15:13 GMT
440
+ recorded_at: Tue, 06 Feb 2018 10:50:27 GMT
1107
441
  recorded_with: VCR 3.0.3