knife-rackspace 0.8.1 → 0.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZjY5N2QxMDNkZTRmNWU4ZTNiZTM4OTZjM2ZiNTAzNTc0NDA2YzFjNw==
4
+ MTlhMjAyNzk5Y2UwZTYwMjg0OTkzNGNlYmI1ZmQwZGNiOGZjNmU5NQ==
5
5
  data.tar.gz: !binary |-
6
- YmIxNTg4Njc1ZDczOWFkMzE2Y2ZhNGU5OWI5MmU1OTdkMmUzMGJlMg==
6
+ ZDg0N2ExZTA1NzczNDM4ZmZkZDE4MGQ3YzFlZDYwMTljNGI1MTViOQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- YTA4MjgwZDM0NTg5ZmI0Y2RkYzg0NDg3NmY4OGMzNTBhOGU3NTYwNDM0MWRj
10
- YTk1ZjM2N2YzZjk1Nzc5ODcyMjRjZDM3ZWIzNTQxMWMxZTI3OTA5MmViYjNm
11
- YTdhNzRmZWZkN2EzMWE2NDJiZTNjNzAxZTQ2NzZmNjcxYjRkOGY=
9
+ NDNhZWQ2NTUwM2RkYjQ0MjhjODlhMDgzN2RhZTlkM2ExYzEyZjhkODkyZjk3
10
+ MDNlOWJhYzYyMzgzMWRjMWQzZmNiNmIwNTAyNDA3ZDZjYzYwZDRiZmMzZmVh
11
+ ZWQ1NmM5ZGJjZTMwNDNlZTUwMGRkNzJmNzc5ZjQxZDMyOTUxM2I=
12
12
  data.tar.gz: !binary |-
13
- YTMwOTg0MzcxMTFlOGM1MTE3NmJlMWI4MGZmYTZmNmVmMDY0NjllMThjZDg2
14
- YmUyOTkyZjgyMzJhMjcxY2MwZDI4NDI1ZTE1MzJhM2M2NGJhYTBmYzQxMTM4
15
- YTE3ZTEwYmVhZTVjMzljNWFkNzAzNThhYjg2YWM1OGNlODk5NmU=
13
+ ZWVkZGM0ZGUyNTRjYmEyOTE2ZDgxOTE4NjE4ZTY1Zjg0MTg2MmUyNWEwMDYw
14
+ OWQyNDRmNTRhMmI2M2JlNTQyNDlmNDY0NjU4ZGEwNDk1NzQyMmQ2NzY0ZGRl
15
+ OTM1MDM4MjY3MDc5NWI4ZDM1MzNiODAwOTI3OTU2MWU1YWQ2ZGU=
@@ -1,5 +1,9 @@
1
- ## v0.8.1
1
+ ## v0.8.2
2
2
  * KNIFE-335 Wait for RackConnect and/or Service Level automation before bootstrapping
3
+ * KNIFE-366 Allow arbitrary bootstrap networks
4
+ * KNIFE-399 update knife rackspace to support string based flavor ids
5
+ * Fixing issue with bootstrapping Windows server
6
+ * Fog 1.16 updates
3
7
 
4
8
  ## v0.8.0
5
9
  * KNIFE-68 enable ability to modify ssh port number
@@ -90,7 +90,7 @@ You may specify if want to manage your disk partitioning scheme with the <tt>--r
90
90
 
91
91
  http://docs.openstack.org/essex/openstack-compute/starter/content/Launch_and_manage_instances-d1e1885.html
92
92
 
93
- You may specify a custom network using the <tt>--network [LABEL_OR_ID]</tt> option. You can also remove the default internal ServiceNet and PublicNet networks by specifying the <tt>--no-default-networks</tt> switch.
93
+ You may specify a custom network using the <tt>--network [LABEL_OR_ID]</tt> option. You can also remove the default internal ServiceNet and PublicNet networks by specifying the <tt>--no-default-networks</tt> switch. To use a network other than PublicNet for the bootstrap connection, specify the <tt>--bootstrap-network LABEL</tt> option.
94
94
 
95
95
  == knife rackspace server delete
96
96
 
@@ -150,29 +150,29 @@ class Chef
150
150
  end
151
151
  end
152
152
 
153
- def public_ip(server)
153
+ def ip_address(server, network='public')
154
154
  if version_one?
155
- v1_public_ip(server)
156
- else
157
- v2_access_ip(server) ? v2_access_ip(server) : v2_public_ip(server)
158
- end
159
- end
160
-
161
- def private_ip(server)
162
- if version_one?
163
- v1_private_ip(server)
155
+ case network
156
+ when 'public'; v1_public_ip(server)
157
+ when 'private'; v1_private_ip(server)
158
+ else raise NotImplementedError
159
+ end
164
160
  else
165
- v2_private_ip(server)
161
+ if network == 'public' && v2_access_ip(server) != ""
162
+ v2_access_ip(server)
163
+ else
164
+ v2_ip_address(server, network)
165
+ end
166
166
  end
167
167
  end
168
168
 
169
169
  def public_dns_name(server)
170
- ip_address = public_ip(server)
171
-
172
- @public_dns_name ||= begin
173
- Resolv.getname(ip_address)
174
- rescue
175
- "#{ip_address.gsub('.','-')}.static.cloud-ips.com" if ip_address
170
+ if public_ip_address = ip_address(server, 'public')
171
+ @public_dns_name ||= begin
172
+ Resolv.getname(public_ip_address)
173
+ rescue
174
+ "#{public_ip_address.gsub('.','-')}.static.cloud-ips.com"
175
+ end
176
176
  end
177
177
  end
178
178
 
@@ -195,14 +195,9 @@ class Chef
195
195
  server.addresses["private"].first == nil ? "" : server.addresses["private"].first
196
196
  end
197
197
 
198
- def v2_public_ip(server)
199
- public_ips = server.addresses["public"]
200
- extract_ipv4_address(public_ips) if public_ips
201
- end
202
-
203
- def v2_private_ip(server)
204
- private_ips = server.addresses["private"]
205
- extract_ipv4_address(private_ips) if private_ips
198
+ def v2_ip_address(server, network)
199
+ network_ips = server.addresses[network]
200
+ extract_ipv4_address(network_ips) if network_ips
206
201
  end
207
202
 
208
203
  def v2_access_ip(server)
@@ -45,7 +45,7 @@ class Chef
45
45
  :short => "-f FLAVOR",
46
46
  :long => "--flavor FLAVOR",
47
47
  :description => "The flavor of server; default is 2 (512 MB)",
48
- :proc => Proc.new { |f| Chef::Config[:knife][:flavor] = f.to_i },
48
+ :proc => Proc.new { |f| Chef::Config[:knife][:flavor] = f.to_s },
49
49
  :default => 2
50
50
 
51
51
  option :image,
@@ -64,9 +64,14 @@ class Chef
64
64
  :long => "--node-name NAME",
65
65
  :description => "The Chef node name for your new node"
66
66
 
67
+ option :bootstrap_network,
68
+ :long => "--bootstrap-network LABEL",
69
+ :description => "Use IP address on this network for bootstrap",
70
+ :default => 'public'
71
+
67
72
  option :private_network,
68
73
  :long => "--private-network",
69
- :description => "Use the private IP for bootstrapping rather than the public IP",
74
+ :description => "Equivalent to --bootstrap-network private",
70
75
  :boolean => true,
71
76
  :default => false
72
77
 
@@ -106,8 +111,7 @@ class Chef
106
111
  :short => "-d DISTRO",
107
112
  :long => "--distro DISTRO",
108
113
  :description => "Bootstrap a distro using a template; default is 'chef-full'",
109
- :proc => Proc.new { |d| Chef::Config[:knife][:distro] = d },
110
- :default => "chef-full"
114
+ :proc => Proc.new { |d| Chef::Config[:knife][:distro] = d }
111
115
 
112
116
  option :template_file,
113
117
  :long => "--template-file TEMPLATE",
@@ -296,6 +300,9 @@ class Chef
296
300
  def run
297
301
  $stdout.sync = true
298
302
 
303
+ # Maybe deprecate this option at some point
304
+ config[:bootstrap_network] = 'private' if config[:private_network]
305
+
299
306
  unless Chef::Config[:knife][:image]
300
307
  ui.error("You have not provided a valid image value. Please note the short option for this value recently changed from '-i' to '-I'.")
301
308
  exit 1
@@ -374,16 +381,12 @@ class Chef
374
381
  puts("\n")
375
382
 
376
383
  msg_pair("Public DNS Name", public_dns_name(server))
377
- msg_pair("Public IP Address", public_ip(server))
378
- msg_pair("Private IP Address", private_ip(server))
384
+ msg_pair("Public IP Address", ip_address(server, 'public'))
385
+ msg_pair("Private IP Address", ip_address(server, 'private'))
379
386
  msg_pair("Password", server.password)
380
387
  msg_pair("Metadata", server.metadata.all)
381
388
 
382
- #which IP address to bootstrap
383
- bootstrap_ip_address = public_ip(server)
384
- if config[:private_network]
385
- bootstrap_ip_address = private_ip(server)
386
- end
389
+ bootstrap_ip_address = ip_address(server, config[:bootstrap_network])
387
390
  Chef::Log.debug("Bootstrap IP Address #{bootstrap_ip_address}")
388
391
  if bootstrap_ip_address.nil?
389
392
  ui.error("No IP address available for bootstrapping.")
@@ -411,8 +414,8 @@ class Chef
411
414
  msg_pair("Image", server.image.name)
412
415
  msg_pair("Metadata", server.metadata)
413
416
  msg_pair("Public DNS Name", public_dns_name(server))
414
- msg_pair("Public IP Address", public_ip(server))
415
- msg_pair("Private IP Address", private_ip(server))
417
+ msg_pair("Public IP Address", ip_address(server, 'public'))
418
+ msg_pair("Private IP Address", ip_address(server, 'private'))
416
419
  msg_pair("Password", server.password)
417
420
  msg_pair("Environment", config[:environment] || '_default')
418
421
  msg_pair("Run List", config[:run_list].join(', '))
@@ -428,6 +431,7 @@ class Chef
428
431
  bootstrap.config[:host_key_verify] = config[:host_key_verify]
429
432
  # bootstrap will run as root...sudo (by default) also messes up Ohai on CentOS boxes
430
433
  bootstrap.config[:use_sudo] = true unless config[:ssh_user] == 'root'
434
+ bootstrap.config[:distro] = locate_config_value(:distro) || 'chef-full'
431
435
  bootstrap_common_params(bootstrap, server)
432
436
  end
433
437
 
@@ -441,7 +445,6 @@ class Chef
441
445
  end
442
446
  bootstrap.config[:prerelease] = config[:prerelease]
443
447
  bootstrap.config[:bootstrap_version] = locate_config_value(:bootstrap_version)
444
- bootstrap.config[:distro] = locate_config_value(:distro)
445
448
  bootstrap.config[:template_file] = locate_config_value(:template_file)
446
449
  bootstrap.config[:first_boot_attributes] = config[:first_boot_attributes]
447
450
  bootstrap.config[:bootstrap_proxy] = locate_config_value(:bootstrap_proxy)
@@ -459,6 +462,7 @@ class Chef
459
462
  bootstrap.config[:winrm_password] = locate_config_value(:winrm_password) || server.password
460
463
  bootstrap.config[:winrm_transport] = locate_config_value(:winrm_transport)
461
464
  bootstrap.config[:winrm_port] = locate_config_value(:winrm_port)
465
+ bootstrap.config[:distro] = locate_config_value(:distro) || 'windows-chef-client-msi'
462
466
  bootstrap_common_params(bootstrap, server)
463
467
  end
464
468
 
@@ -67,8 +67,8 @@ class Chef
67
67
  msg_pair("Name", server.name)
68
68
  msg_pair("Flavor", server.flavor.name)
69
69
  msg_pair("Image", server.image.name)
70
- msg_pair("Public IP Address", public_ip(server))
71
- msg_pair("Private IP Address", private_ip(server))
70
+ msg_pair("Public IP Address", ip_address(server, 'public'))
71
+ msg_pair("Private IP Address", ip_address(server, 'private'))
72
72
 
73
73
  puts "\n"
74
74
  confirm("Do you really want to delete this server")
@@ -42,8 +42,8 @@ class Chef
42
42
  server = connection.servers.get(server.id)
43
43
  server_list << server.id.to_s
44
44
  server_list << server.name
45
- server_list << public_ip(server)
46
- server_list << private_ip(server)
45
+ server_list << ip_address(server, 'public')
46
+ server_list << ip_address(server, 'private')
47
47
  server_list << (server.flavor_id == nil ? "" : server.flavor_id.to_s)
48
48
  server_list << (server.image_id == nil ? "" : server.image_id.to_s)
49
49
  server_list << begin
@@ -1,6 +1,6 @@
1
1
  module Knife
2
2
  module Rackspace
3
- VERSION = "0.8.1"
3
+ VERSION = "0.8.2"
4
4
  MAJOR, MINOR, TINY = VERSION.split('.')
5
5
  end
6
6
  end
@@ -1,5 +1,77 @@
1
1
  ---
2
2
  http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/images/detail.json
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - fog/1.16.0
12
+ Content-Type:
13
+ - application/json
14
+ Accept:
15
+ - application/json
16
+ X-Auth-Token: _ONE-TIME-TOKEN_
17
+ response:
18
+ status:
19
+ code: 200
20
+ message:
21
+ headers:
22
+ Cache-Control:
23
+ - s-maxage=1800
24
+ Content-Type:
25
+ - application/json
26
+ Via:
27
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
28
+ Last-Modified:
29
+ - Mon, 09 Jul 2012 17:15:23 GMT
30
+ x-purge-key:
31
+ - /000000/images
32
+ Vary:
33
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
34
+ Server:
35
+ - Jetty(8.0.y.z-SNAPSHOT)
36
+ Content-Length:
37
+ - '2547'
38
+ Date:
39
+ - Tue, 22 Oct 2013 20:16:35 GMT
40
+ X-Varnish: _VARNISH-REQUEST-ID_
41
+ Age:
42
+ - '0'
43
+ Connection:
44
+ - keep-alive
45
+ body:
46
+ encoding: UTF-8
47
+ string: ! '{"images":[{"id":118,"status":"ACTIVE","updated":"2011-08-17T05:11:30-05:00","name":"CentOS
48
+ 6.0"},{"id":104,"status":"ACTIVE","updated":"2011-08-17T05:11:30-05:00","name":"Debian
49
+ 6 (Squeeze)"},{"id":125,"status":"ACTIVE","updated":"2012-05-03T07:21:06-05:00","name":"Ubuntu
50
+ 12.04 LTS"},{"id":107,"status":"ACTIVE","updated":"2012-04-24T10:48:08-05:00","name":"FreeBSD
51
+ 9.0"},{"id":24,"status":"ACTIVE","updated":"2010-01-26T12:07:04-06:00","name":"Windows
52
+ Server 2008 SP2 x64"},{"id":109,"status":"ACTIVE","updated":"2011-11-03T06:28:56-05:00","name":"openSUSE
53
+ 12"},{"id":127,"status":"ACTIVE","updated":"2012-07-09T12:15:23-05:00","name":"CentOS
54
+ 6.3"},{"id":85,"status":"ACTIVE","updated":"2010-01-26T12:07:17-06:00","name":"Windows
55
+ Server 2008 R2 x64"},{"id":110,"status":"ACTIVE","updated":"2011-08-17T05:11:30-05:00","name":"Red
56
+ Hat Enterprise Linux 5.5"},{"id":114,"status":"ACTIVE","updated":"2011-08-17T05:11:30-05:00","name":"CentOS
57
+ 5.6"},{"id":112,"status":"ACTIVE","updated":"2011-04-21T10:24:01-05:00","name":"Ubuntu
58
+ 10.04 LTS"},{"id":56,"status":"ACTIVE","updated":"2010-09-17T07:12:56-05:00","name":"Windows
59
+ Server 2008 SP2 x86 + SQL Server 2008 R2 Standard"},{"id":122,"status":"ACTIVE","updated":"2012-02-06T04:34:21-06:00","name":"CentOS
60
+ 6.2"},{"id":100,"status":"ACTIVE","updated":"2011-09-12T09:09:23-05:00","name":"Arch
61
+ 2012.08"},{"id":31,"status":"ACTIVE","updated":"2010-01-26T12:07:44-06:00","name":"Windows
62
+ Server 2008 SP2 x86"},{"id":91,"status":"ACTIVE","updated":"2012-04-24T16:44:01-05:00","name":"Windows
63
+ Server 2008 R2 x64 + SQL Server 2012 Standard"},{"id":111,"status":"ACTIVE","updated":"2011-09-12T10:53:12-05:00","name":"Red
64
+ Hat Enterprise Linux 6"},{"id":92,"status":"ACTIVE","updated":"2012-04-24T16:44:01-05:00","name":"Windows
65
+ Server 2008 R2 x64 + SQL Server 2012 Web"},{"id":57,"status":"ACTIVE","updated":"2010-09-17T07:16:25-05:00","name":"Windows
66
+ Server 2008 SP2 x64 + SQL Server 2008 R2 Standard"},{"id":120,"status":"ACTIVE","updated":"2012-01-03T04:39:05-06:00","name":"Fedora
67
+ 16"},{"id":86,"status":"ACTIVE","updated":"2010-09-17T07:19:20-05:00","name":"Windows
68
+ Server 2008 R2 x64 + SQL Server 2008 R2 Standard"},{"id":108,"status":"ACTIVE","updated":"2011-11-01T08:32:30-05:00","name":"Gentoo
69
+ 12.3"},{"id":126,"status":"ACTIVE","updated":"2012-05-29T17:11:45-05:00","name":"Fedora
70
+ 17"},{"id":121,"status":"ACTIVE","updated":"2012-05-04T10:51:28-05:00","name":"CentOS
71
+ 5.8"},{"id":89,"status":"ACTIVE","updated":"2011-10-04T08:39:34-05:00","name":"Windows
72
+ Server 2008 R2 x64 + SQL Server 2008 R2 Web"}]}'
73
+ http_version:
74
+ recorded_at: Tue, 22 Oct 2013 20:16:35 GMT
3
75
  - request:
4
76
  method: post
5
77
  uri: https://identity.api.rackspacecloud.com/v2.0/tokens
@@ -8,7 +80,7 @@ http_interactions:
8
80
  string: ! '{"auth":{"RAX-KSKEY:apiKeyCredentials":{"username":"_RAX_USERNAME_","apiKey":"_RAX_PASSWORD_"}}}'
9
81
  headers:
10
82
  User-Agent:
11
- - fog/1.10.1
83
+ - fog/1.16.0
12
84
  Content-Type:
13
85
  - application/json
14
86
  Accept:
@@ -22,7 +94,7 @@ http_interactions:
22
94
  Server:
23
95
  - nginx/0.8.55
24
96
  Date:
25
- - Wed, 26 Jun 2013 16:49:04 GMT
97
+ - Tue, 22 Oct 2013 20:17:04 GMT
26
98
  Content-Type:
27
99
  - application/json
28
100
  Connection:
@@ -32,59 +104,62 @@ http_interactions:
32
104
  VIA:
33
105
  - 1.0 Repose (Repose/2.3.5)
34
106
  Content-Length:
35
- - '4975'
107
+ - '6671'
36
108
  Front-End-Https:
37
109
  - 'on'
38
110
  body:
39
- encoding: US-ASCII
40
- string: ! '{"access":{"token":{"id":"8a68ee867be84f98967a9250cab8ba7a","expires":"2013-06-27T08:48:53.037-05:00","tenant":{"id":"000000","name":"000000"}},"serviceCatalog":[{"name":"cloudFiles","endpoints":[{"region":"DFW","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.dfw1.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.dfw1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"ORD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.ord1.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.ord1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"SYD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.syd2.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.syd2.clouddrive.com\/v1\/_CDN-TENANT-NAME_"}],"type":"object-store"},{"name":"cloudFilesCDN","endpoints":[{"region":"DFW","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"ORD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn2.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"SYD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn4.clouddrive.com\/v1\/_CDN-TENANT-NAME_"}],"type":"rax:object-cdn"},{"name":"cloudBlockStorage","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.blockstorage.api.rackspacecloud.com\/v1\/000000"}],"type":"volume"},{"name":"cloudDatabases","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.databases.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:database"},{"name":"cloudLoadBalancers","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:load-balancer"},{"name":"cloudServersOpenStack","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/syd.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/syd.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/ord.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/ord.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/dfw.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/dfw.servers.api.rackspacecloud.com\/","versionId":"2"}],"type":"compute"},{"name":"cloudBackup","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/backup.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:backup"},{"name":"cloudDNS","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/dns.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:dns"},{"name":"cloudMonitoring","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/monitoring.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:monitor"},{"name":"cloudServers","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/servers.api.rackspacecloud.com\/v1.0\/000000","versionInfo":"https:\/\/servers.api.rackspacecloud.com\/v1.0","versionList":"https:\/\/servers.api.rackspacecloud.com\/","versionId":"1.0"}],"type":"compute"}],"user":{"id":"296063","roles":[{"tenantId":"_CDN-TENANT-NAME_","id":"5","description":"A
111
+ encoding: UTF-8
112
+ string: ! '{"access":{"token":{"id":"token_0","expires":"2013-10-23T01:42:28.703-05:00","tenant":{"id":"000000","name":"000000"},"RAX-AUTH:authenticatedBy":["APIKEY"]},"serviceCatalog":[{"name":"cloudFiles","endpoints":[{"region":"DFW","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.dfw1.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.dfw1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"SYD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.syd2.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.syd2.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"ORD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.ord1.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.ord1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"IAD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.iad3.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.iad3.clouddrive.com\/v1\/_CDN-TENANT-NAME_"}],"type":"object-store"},{"name":"cloudFilesCDN","endpoints":[{"region":"DFW","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"SYD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn4.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"ORD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn2.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"IAD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn5.clouddrive.com\/v1\/_CDN-TENANT-NAME_"}],"type":"rax:object-cdn"},{"name":"cloudDatabases","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.databases.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:database"},{"name":"cloudBlockStorage","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.blockstorage.api.rackspacecloud.com\/v1\/000000"}],"type":"volume"},{"name":"cloudServersOpenStack","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/syd.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/syd.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/ord.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/ord.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/dfw.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/dfw.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/iad.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/iad.servers.api.rackspacecloud.com\/","versionId":"2"}],"type":"compute"},{"name":"cloudLoadBalancers","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:load-balancer"},{"name":"autoscale","endpoints":[{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.autoscale.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.autoscale.api.rackspacecloud.com\/v1.0\/000000"},{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.autoscale.api.rackspacecloud.com\/v1.0\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.autoscale.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:autoscale"},{"name":"cloudDNS","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/dns.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:dns"},{"name":"cloudServers","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/servers.api.rackspacecloud.com\/v1.0\/000000","versionInfo":"https:\/\/servers.api.rackspacecloud.com\/v1.0","versionList":"https:\/\/servers.api.rackspacecloud.com\/","versionId":"1.0"}],"type":"compute"},{"name":"cloudBackup","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/backup.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:backup"},{"name":"cloudMonitoring","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/monitoring.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:monitor"}],"user":{"id":"358651","roles":[{"id":"10000150","description":"Checkmate
113
+ Access role","name":"checkmate"},{"tenantId":"_CDN-TENANT-NAME_","id":"5","description":"A
41
114
  Role that allows a user access to keystone Service methods","name":"object-store:default"},{"tenantId":"000000","id":"6","description":"A
42
115
  Role that allows a user access to keystone Service methods","name":"compute:default"},{"id":"3","description":"User
43
- Admin Role.","name":"identity:user-admin"}],"name":"_RAX_USERNAME_","RAX-AUTH:defaultRegion":"DFW"}}}'
116
+ Admin Role.","name":"identity:user-admin"}],"name":"_RAX_USERNAME_","RAX-AUTH:defaultRegion":"ORD"}}}'
44
117
  http_version:
45
- recorded_at: Wed, 26 Jun 2013 16:49:04 GMT
118
+ recorded_at: Tue, 22 Oct 2013 20:17:04 GMT
46
119
  - request:
47
120
  method: get
48
- uri: https://servers.api.rackspacecloud.com/v1.0/000000/images/detail.json?ignore_awful_caching1372265344
121
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/images/detail.json
49
122
  body:
50
123
  encoding: US-ASCII
51
124
  string: ''
52
125
  headers:
53
126
  User-Agent:
54
- - fog/1.10.1
127
+ - fog/1.16.0
55
128
  Content-Type:
56
129
  - application/json
130
+ Accept:
131
+ - application/json
57
132
  X-Auth-Token: _ONE-TIME-TOKEN_
58
133
  response:
59
134
  status:
60
- code: 200
135
+ code: 203
61
136
  message:
62
137
  headers:
63
- Server:
64
- - Apache-Coyote/1.1
65
- vary:
66
- - Accept, Accept-Encoding, X-Auth-Token
67
- Last-Modified:
68
- - Wed, 26 Jun 2013 16:18:51 GMT
69
- X-PURGE-KEY:
70
- - /000000/images
71
138
  Cache-Control:
72
139
  - s-maxage=1800
73
140
  Content-Type:
74
141
  - application/json
142
+ Via:
143
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
144
+ Last-Modified:
145
+ - Mon, 09 Jul 2012 17:15:23 GMT
146
+ x-purge-key:
147
+ - /000000/images
148
+ Vary:
149
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
150
+ Server:
151
+ - Jetty(8.0.y.z-SNAPSHOT)
75
152
  Content-Length:
76
- - '2710'
153
+ - '2547'
77
154
  Date:
78
- - Wed, 26 Jun 2013 16:49:04 GMT
155
+ - Tue, 22 Oct 2013 20:17:04 GMT
79
156
  X-Varnish: _VARNISH-REQUEST-ID_
80
157
  Age:
81
- - '0'
82
- Via:
83
- - 1.1 varnish
158
+ - '29'
84
159
  Connection:
85
160
  - keep-alive
86
161
  body:
87
- encoding: US-ASCII
162
+ encoding: UTF-8
88
163
  string: ! '{"images":[{"id":118,"status":"ACTIVE","updated":"2011-08-17T05:11:30-05:00","name":"CentOS
89
164
  6.0"},{"id":104,"status":"ACTIVE","updated":"2011-08-17T05:11:30-05:00","name":"Debian
90
165
  6 (Squeeze)"},{"id":125,"status":"ACTIVE","updated":"2012-05-03T07:21:06-05:00","name":"Ubuntu
@@ -110,7 +185,7 @@ http_interactions:
110
185
  12.3"},{"id":126,"status":"ACTIVE","updated":"2012-05-29T17:11:45-05:00","name":"Fedora
111
186
  17"},{"id":121,"status":"ACTIVE","updated":"2012-05-04T10:51:28-05:00","name":"CentOS
112
187
  5.8"},{"id":89,"status":"ACTIVE","updated":"2011-10-04T08:39:34-05:00","name":"Windows
113
- Server 2008 R2 x64 + SQL Server 2008 R2 Web"},{"progress":100,"id":37532512,"status":"ACTIVE","created":"2013-06-26T11:15:29-05:00","updated":"2013-06-26T11:18:51-05:00","name":"snapshot","serverId":21546848}]}'
188
+ Server 2008 R2 x64 + SQL Server 2008 R2 Web"}]}'
114
189
  http_version:
115
- recorded_at: Wed, 26 Jun 2013 16:49:04 GMT
190
+ recorded_at: Tue, 22 Oct 2013 20:17:04 GMT
116
191
  recorded_with: VCR 2.5.0
@@ -1,5 +1,432 @@
1
1
  ---
2
2
  http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/detail.json
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - fog/1.16.0
12
+ Content-Type:
13
+ - application/json
14
+ Accept:
15
+ - application/json
16
+ X-Auth-Token: _ONE-TIME-TOKEN_
17
+ response:
18
+ status:
19
+ code: 200
20
+ message:
21
+ headers:
22
+ Cache-Control:
23
+ - s-maxage=1800
24
+ Content-Type:
25
+ - application/json
26
+ Via:
27
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
28
+ Last-Modified:
29
+ - Tue, 06 Dec 2011 17:31:55 GMT
30
+ x-purge-key:
31
+ - /flavors
32
+ Vary:
33
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
34
+ Server:
35
+ - Jetty(8.0.y.z-SNAPSHOT)
36
+ Content-Length:
37
+ - '422'
38
+ Date:
39
+ - Tue, 22 Oct 2013 20:16:27 GMT
40
+ X-Varnish: _VARNISH-REQUEST-ID_
41
+ Age:
42
+ - '0'
43
+ Connection:
44
+ - keep-alive
45
+ body:
46
+ encoding: UTF-8
47
+ string: ! '{"flavors":[{"id":1,"ram":256,"disk":10,"name":"256 server"},{"id":2,"ram":512,"disk":20,"name":"512
48
+ server"},{"id":3,"ram":1024,"disk":40,"name":"1GB server"},{"id":4,"ram":2048,"disk":80,"name":"2GB
49
+ server"},{"id":5,"ram":4096,"disk":160,"name":"4GB server"},{"id":6,"ram":8192,"disk":320,"name":"8GB
50
+ server"},{"id":7,"ram":15872,"disk":620,"name":"15.5GB server"},{"id":8,"ram":30720,"disk":1200,"name":"30GB
51
+ server"}]}'
52
+ http_version:
53
+ recorded_at: Tue, 22 Oct 2013 20:16:27 GMT
54
+ - request:
55
+ method: get
56
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/1.json
57
+ body:
58
+ encoding: US-ASCII
59
+ string: ''
60
+ headers:
61
+ User-Agent:
62
+ - fog/1.16.0
63
+ Content-Type:
64
+ - application/json
65
+ Accept:
66
+ - application/json
67
+ X-Auth-Token: _ONE-TIME-TOKEN_
68
+ response:
69
+ status:
70
+ code: 203
71
+ message:
72
+ headers:
73
+ Cache-Control:
74
+ - s-maxage=1800
75
+ Content-Type:
76
+ - application/json
77
+ Via:
78
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
79
+ Last-Modified:
80
+ - Wed, 19 Sep 2007 18:24:59 GMT
81
+ x-purge-key:
82
+ - /flavors
83
+ Vary:
84
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
85
+ Server:
86
+ - Jetty(8.0.y.z-SNAPSHOT)
87
+ Content-Length:
88
+ - '59'
89
+ Date:
90
+ - Tue, 22 Oct 2013 20:16:28 GMT
91
+ X-Varnish: _VARNISH-REQUEST-ID_
92
+ Age:
93
+ - '432'
94
+ Connection:
95
+ - keep-alive
96
+ body:
97
+ encoding: UTF-8
98
+ string: ! '{"flavor":{"id":1,"ram":256,"disk":10,"name":"256 server"}}'
99
+ http_version:
100
+ recorded_at: Tue, 22 Oct 2013 20:16:28 GMT
101
+ - request:
102
+ method: get
103
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/2.json
104
+ body:
105
+ encoding: US-ASCII
106
+ string: ''
107
+ headers:
108
+ User-Agent:
109
+ - fog/1.16.0
110
+ Content-Type:
111
+ - application/json
112
+ Accept:
113
+ - application/json
114
+ X-Auth-Token: _ONE-TIME-TOKEN_
115
+ response:
116
+ status:
117
+ code: 203
118
+ message:
119
+ headers:
120
+ Cache-Control:
121
+ - s-maxage=1800
122
+ Content-Type:
123
+ - application/json
124
+ Via:
125
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
126
+ Last-Modified:
127
+ - Wed, 19 Sep 2007 18:25:10 GMT
128
+ x-purge-key:
129
+ - /flavors
130
+ Vary:
131
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
132
+ Server:
133
+ - Jetty(8.0.y.z-SNAPSHOT)
134
+ Content-Length:
135
+ - '59'
136
+ Date:
137
+ - Tue, 22 Oct 2013 20:16:28 GMT
138
+ X-Varnish: _VARNISH-REQUEST-ID_
139
+ Age:
140
+ - '431'
141
+ Connection:
142
+ - keep-alive
143
+ body:
144
+ encoding: UTF-8
145
+ string: ! '{"flavor":{"id":2,"ram":512,"disk":20,"name":"512 server"}}'
146
+ http_version:
147
+ recorded_at: Tue, 22 Oct 2013 20:16:28 GMT
148
+ - request:
149
+ method: get
150
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/3.json
151
+ body:
152
+ encoding: US-ASCII
153
+ string: ''
154
+ headers:
155
+ User-Agent:
156
+ - fog/1.16.0
157
+ Content-Type:
158
+ - application/json
159
+ Accept:
160
+ - application/json
161
+ X-Auth-Token: _ONE-TIME-TOKEN_
162
+ response:
163
+ status:
164
+ code: 203
165
+ message:
166
+ headers:
167
+ Cache-Control:
168
+ - s-maxage=1800
169
+ Content-Type:
170
+ - application/json
171
+ Via:
172
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
173
+ Last-Modified:
174
+ - Fri, 21 Sep 2007 23:11:39 GMT
175
+ x-purge-key:
176
+ - /flavors
177
+ Vary:
178
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
179
+ Server:
180
+ - Jetty(8.0.y.z-SNAPSHOT)
181
+ Content-Length:
182
+ - '60'
183
+ Date:
184
+ - Tue, 22 Oct 2013 20:16:29 GMT
185
+ X-Varnish: _VARNISH-REQUEST-ID_
186
+ Age:
187
+ - '431'
188
+ Connection:
189
+ - keep-alive
190
+ body:
191
+ encoding: UTF-8
192
+ string: ! '{"flavor":{"id":3,"ram":1024,"disk":40,"name":"1GB server"}}'
193
+ http_version:
194
+ recorded_at: Tue, 22 Oct 2013 20:16:29 GMT
195
+ - request:
196
+ method: get
197
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/4.json
198
+ body:
199
+ encoding: US-ASCII
200
+ string: ''
201
+ headers:
202
+ User-Agent:
203
+ - fog/1.16.0
204
+ Content-Type:
205
+ - application/json
206
+ Accept:
207
+ - application/json
208
+ X-Auth-Token: _ONE-TIME-TOKEN_
209
+ response:
210
+ status:
211
+ code: 203
212
+ message:
213
+ headers:
214
+ Cache-Control:
215
+ - s-maxage=1800
216
+ Content-Type:
217
+ - application/json
218
+ Via:
219
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
220
+ Last-Modified:
221
+ - Wed, 19 Sep 2007 18:25:33 GMT
222
+ x-purge-key:
223
+ - /flavors
224
+ Vary:
225
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
226
+ Server:
227
+ - Jetty(8.0.y.z-SNAPSHOT)
228
+ Content-Length:
229
+ - '60'
230
+ Date:
231
+ - Tue, 22 Oct 2013 20:16:29 GMT
232
+ X-Varnish: _VARNISH-REQUEST-ID_
233
+ Age:
234
+ - '431'
235
+ Connection:
236
+ - keep-alive
237
+ body:
238
+ encoding: UTF-8
239
+ string: ! '{"flavor":{"id":4,"ram":2048,"disk":80,"name":"2GB server"}}'
240
+ http_version:
241
+ recorded_at: Tue, 22 Oct 2013 20:16:29 GMT
242
+ - request:
243
+ method: get
244
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/5.json
245
+ body:
246
+ encoding: US-ASCII
247
+ string: ''
248
+ headers:
249
+ User-Agent:
250
+ - fog/1.16.0
251
+ Content-Type:
252
+ - application/json
253
+ Accept:
254
+ - application/json
255
+ X-Auth-Token: _ONE-TIME-TOKEN_
256
+ response:
257
+ status:
258
+ code: 203
259
+ message:
260
+ headers:
261
+ Cache-Control:
262
+ - s-maxage=1800
263
+ Content-Type:
264
+ - application/json
265
+ Via:
266
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
267
+ Last-Modified:
268
+ - Tue, 18 Mar 2008 17:54:15 GMT
269
+ x-purge-key:
270
+ - /flavors
271
+ Vary:
272
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
273
+ Server:
274
+ - Jetty(8.0.y.z-SNAPSHOT)
275
+ Content-Length:
276
+ - '61'
277
+ Date:
278
+ - Tue, 22 Oct 2013 20:16:30 GMT
279
+ X-Varnish: _VARNISH-REQUEST-ID_
280
+ Age:
281
+ - '430'
282
+ Connection:
283
+ - keep-alive
284
+ body:
285
+ encoding: UTF-8
286
+ string: ! '{"flavor":{"id":5,"ram":4096,"disk":160,"name":"4GB server"}}'
287
+ http_version:
288
+ recorded_at: Tue, 22 Oct 2013 20:16:30 GMT
289
+ - request:
290
+ method: get
291
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/6.json
292
+ body:
293
+ encoding: US-ASCII
294
+ string: ''
295
+ headers:
296
+ User-Agent:
297
+ - fog/1.16.0
298
+ Content-Type:
299
+ - application/json
300
+ Accept:
301
+ - application/json
302
+ X-Auth-Token: _ONE-TIME-TOKEN_
303
+ response:
304
+ status:
305
+ code: 200
306
+ message:
307
+ headers:
308
+ Cache-Control:
309
+ - s-maxage=1800
310
+ Content-Type:
311
+ - application/json
312
+ Via:
313
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
314
+ Last-Modified:
315
+ - Mon, 28 Jan 2008 13:35:30 GMT
316
+ x-purge-key:
317
+ - /flavors
318
+ Vary:
319
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
320
+ Server:
321
+ - Jetty(8.0.y.z-SNAPSHOT)
322
+ Content-Length:
323
+ - '61'
324
+ Date:
325
+ - Tue, 22 Oct 2013 20:16:31 GMT
326
+ X-Varnish: _VARNISH-REQUEST-ID_
327
+ Age:
328
+ - '0'
329
+ Connection:
330
+ - keep-alive
331
+ body:
332
+ encoding: UTF-8
333
+ string: ! '{"flavor":{"id":6,"ram":8192,"disk":320,"name":"8GB server"}}'
334
+ http_version:
335
+ recorded_at: Tue, 22 Oct 2013 20:16:31 GMT
336
+ - request:
337
+ method: get
338
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/7.json
339
+ body:
340
+ encoding: US-ASCII
341
+ string: ''
342
+ headers:
343
+ User-Agent:
344
+ - fog/1.16.0
345
+ Content-Type:
346
+ - application/json
347
+ Accept:
348
+ - application/json
349
+ X-Auth-Token: _ONE-TIME-TOKEN_
350
+ response:
351
+ status:
352
+ code: 203
353
+ message:
354
+ headers:
355
+ Cache-Control:
356
+ - s-maxage=1800
357
+ Content-Type:
358
+ - application/json
359
+ Via:
360
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
361
+ Last-Modified:
362
+ - Fri, 01 Apr 2011 00:02:01 GMT
363
+ x-purge-key:
364
+ - /flavors
365
+ Vary:
366
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
367
+ Server:
368
+ - Jetty(8.0.y.z-SNAPSHOT)
369
+ Content-Length:
370
+ - '65'
371
+ Date:
372
+ - Tue, 22 Oct 2013 20:16:31 GMT
373
+ X-Varnish: _VARNISH-REQUEST-ID_
374
+ Age:
375
+ - '429'
376
+ Connection:
377
+ - keep-alive
378
+ body:
379
+ encoding: UTF-8
380
+ string: ! '{"flavor":{"id":7,"ram":15872,"disk":620,"name":"15.5GB server"}}'
381
+ http_version:
382
+ recorded_at: Tue, 22 Oct 2013 20:16:31 GMT
383
+ - request:
384
+ method: get
385
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/8.json
386
+ body:
387
+ encoding: US-ASCII
388
+ string: ''
389
+ headers:
390
+ User-Agent:
391
+ - fog/1.16.0
392
+ Content-Type:
393
+ - application/json
394
+ Accept:
395
+ - application/json
396
+ X-Auth-Token: _ONE-TIME-TOKEN_
397
+ response:
398
+ status:
399
+ code: 203
400
+ message:
401
+ headers:
402
+ Cache-Control:
403
+ - s-maxage=1800
404
+ Content-Type:
405
+ - application/json
406
+ Via:
407
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
408
+ Last-Modified:
409
+ - Tue, 06 Dec 2011 17:31:55 GMT
410
+ x-purge-key:
411
+ - /flavors
412
+ Vary:
413
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
414
+ Server:
415
+ - Jetty(8.0.y.z-SNAPSHOT)
416
+ Content-Length:
417
+ - '64'
418
+ Date:
419
+ - Tue, 22 Oct 2013 20:16:32 GMT
420
+ X-Varnish: _VARNISH-REQUEST-ID_
421
+ Age:
422
+ - '429'
423
+ Connection:
424
+ - keep-alive
425
+ body:
426
+ encoding: UTF-8
427
+ string: ! '{"flavor":{"id":8,"ram":30720,"disk":1200,"name":"30GB server"}}'
428
+ http_version:
429
+ recorded_at: Tue, 22 Oct 2013 20:16:32 GMT
3
430
  - request:
4
431
  method: post
5
432
  uri: https://identity.api.rackspacecloud.com/v2.0/tokens
@@ -8,7 +435,7 @@ http_interactions:
8
435
  string: ! '{"auth":{"RAX-KSKEY:apiKeyCredentials":{"username":"_RAX_USERNAME_","apiKey":"_RAX_PASSWORD_"}}}'
9
436
  headers:
10
437
  User-Agent:
11
- - fog/1.10.1
438
+ - fog/1.16.0
12
439
  Content-Type:
13
440
  - application/json
14
441
  Accept:
@@ -22,434 +449,455 @@ http_interactions:
22
449
  Server:
23
450
  - nginx/0.8.55
24
451
  Date:
25
- - Wed, 26 Jun 2013 16:49:00 GMT
452
+ - Tue, 22 Oct 2013 20:16:56 GMT
26
453
  Content-Type:
27
454
  - application/json
28
455
  Connection:
29
456
  - keep-alive
457
+ X-NewRelic-App-Data:
458
+ - PxQGUF9aDwETVlhSBQgFVUYdFGQHBDcQUQxLA1tMXV1dORYyVBNFDgFCa04sBkpAVR1BMUdDXggDEWFWAEYiEkAOUQFZTF1dXUcVUR9RH1JKBAdRVlMICglIUFIAHRVeUFRTBlNXVwZUAVkBDgtVEG4=
30
459
  vary:
31
460
  - Accept, Accept-Encoding, X-Auth-Token
32
461
  VIA:
33
462
  - 1.0 Repose (Repose/2.3.5)
34
463
  Content-Length:
35
- - '4975'
464
+ - '6671'
36
465
  Front-End-Https:
37
466
  - 'on'
38
467
  body:
39
- encoding: US-ASCII
40
- string: ! '{"access":{"token":{"id":"8a68ee867be84f98967a9250cab8ba7a","expires":"2013-06-27T08:48:53.037-05:00","tenant":{"id":"000000","name":"000000"}},"serviceCatalog":[{"name":"cloudFiles","endpoints":[{"region":"DFW","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.dfw1.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.dfw1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"ORD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.ord1.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.ord1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"SYD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.syd2.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.syd2.clouddrive.com\/v1\/_CDN-TENANT-NAME_"}],"type":"object-store"},{"name":"cloudFilesCDN","endpoints":[{"region":"DFW","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"ORD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn2.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"SYD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn4.clouddrive.com\/v1\/_CDN-TENANT-NAME_"}],"type":"rax:object-cdn"},{"name":"cloudBlockStorage","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.blockstorage.api.rackspacecloud.com\/v1\/000000"}],"type":"volume"},{"name":"cloudDatabases","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.databases.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:database"},{"name":"cloudLoadBalancers","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:load-balancer"},{"name":"cloudServersOpenStack","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/syd.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/syd.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/ord.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/ord.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/dfw.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/dfw.servers.api.rackspacecloud.com\/","versionId":"2"}],"type":"compute"},{"name":"cloudBackup","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/backup.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:backup"},{"name":"cloudDNS","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/dns.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:dns"},{"name":"cloudMonitoring","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/monitoring.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:monitor"},{"name":"cloudServers","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/servers.api.rackspacecloud.com\/v1.0\/000000","versionInfo":"https:\/\/servers.api.rackspacecloud.com\/v1.0","versionList":"https:\/\/servers.api.rackspacecloud.com\/","versionId":"1.0"}],"type":"compute"}],"user":{"id":"296063","roles":[{"tenantId":"_CDN-TENANT-NAME_","id":"5","description":"A
468
+ encoding: UTF-8
469
+ string: ! '{"access":{"token":{"id":"token_0","expires":"2013-10-23T01:42:28.703-05:00","tenant":{"id":"000000","name":"000000"},"RAX-AUTH:authenticatedBy":["APIKEY"]},"serviceCatalog":[{"name":"cloudFiles","endpoints":[{"region":"DFW","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.dfw1.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.dfw1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"ORD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.ord1.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.ord1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"SYD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.syd2.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.syd2.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"IAD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.iad3.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.iad3.clouddrive.com\/v1\/_CDN-TENANT-NAME_"}],"type":"object-store"},{"name":"cloudFilesCDN","endpoints":[{"region":"DFW","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"ORD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn2.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"SYD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn4.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"IAD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn5.clouddrive.com\/v1\/_CDN-TENANT-NAME_"}],"type":"rax:object-cdn"},{"name":"cloudDatabases","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.databases.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:database"},{"name":"cloudBlockStorage","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.blockstorage.api.rackspacecloud.com\/v1\/000000"}],"type":"volume"},{"name":"cloudServersOpenStack","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/syd.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/syd.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/ord.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/ord.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/dfw.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/dfw.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/iad.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/iad.servers.api.rackspacecloud.com\/","versionId":"2"}],"type":"compute"},{"name":"cloudLoadBalancers","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:load-balancer"},{"name":"autoscale","endpoints":[{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.autoscale.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.autoscale.api.rackspacecloud.com\/v1.0\/000000"},{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.autoscale.api.rackspacecloud.com\/v1.0\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.autoscale.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:autoscale"},{"name":"cloudMonitoring","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/monitoring.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:monitor"},{"name":"cloudDNS","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/dns.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:dns"},{"name":"cloudServers","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/servers.api.rackspacecloud.com\/v1.0\/000000","versionInfo":"https:\/\/servers.api.rackspacecloud.com\/v1.0","versionList":"https:\/\/servers.api.rackspacecloud.com\/","versionId":"1.0"}],"type":"compute"},{"name":"cloudBackup","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/backup.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:backup"}],"user":{"id":"358651","roles":[{"id":"10000150","description":"Checkmate
470
+ Access role","name":"checkmate"},{"tenantId":"_CDN-TENANT-NAME_","id":"5","description":"A
41
471
  Role that allows a user access to keystone Service methods","name":"object-store:default"},{"tenantId":"000000","id":"6","description":"A
42
472
  Role that allows a user access to keystone Service methods","name":"compute:default"},{"id":"3","description":"User
43
- Admin Role.","name":"identity:user-admin"}],"name":"_RAX_USERNAME_","RAX-AUTH:defaultRegion":"DFW"}}}'
473
+ Admin Role.","name":"identity:user-admin"}],"name":"_RAX_USERNAME_","RAX-AUTH:defaultRegion":"ORD"}}}'
44
474
  http_version:
45
- recorded_at: Wed, 26 Jun 2013 16:49:00 GMT
475
+ recorded_at: Tue, 22 Oct 2013 20:16:57 GMT
46
476
  - request:
47
477
  method: get
48
- uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/detail.json?ignore_awful_caching1372265340
478
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/detail.json
49
479
  body:
50
480
  encoding: US-ASCII
51
481
  string: ''
52
482
  headers:
53
483
  User-Agent:
54
- - fog/1.10.1
484
+ - fog/1.16.0
55
485
  Content-Type:
56
486
  - application/json
487
+ Accept:
488
+ - application/json
57
489
  X-Auth-Token: _ONE-TIME-TOKEN_
58
490
  response:
59
491
  status:
60
- code: 200
492
+ code: 203
61
493
  message:
62
494
  headers:
63
- Server:
64
- - Apache-Coyote/1.1
65
- vary:
66
- - Accept, Accept-Encoding, X-Auth-Token
67
- Last-Modified:
68
- - Tue, 06 Dec 2011 17:31:55 GMT
69
- X-PURGE-KEY:
70
- - /flavors
71
495
  Cache-Control:
72
496
  - s-maxage=1800
73
497
  Content-Type:
74
498
  - application/json
499
+ Via:
500
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
501
+ Last-Modified:
502
+ - Tue, 06 Dec 2011 17:31:55 GMT
503
+ x-purge-key:
504
+ - /flavors
505
+ Vary:
506
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
507
+ Server:
508
+ - Jetty(8.0.y.z-SNAPSHOT)
75
509
  Content-Length:
76
510
  - '422'
77
511
  Date:
78
- - Wed, 26 Jun 2013 16:49:01 GMT
512
+ - Tue, 22 Oct 2013 20:16:57 GMT
79
513
  X-Varnish: _VARNISH-REQUEST-ID_
80
514
  Age:
81
- - '0'
82
- Via:
83
- - 1.1 varnish
515
+ - '462'
84
516
  Connection:
85
517
  - keep-alive
86
518
  body:
87
- encoding: US-ASCII
519
+ encoding: UTF-8
88
520
  string: ! '{"flavors":[{"id":1,"ram":256,"disk":10,"name":"256 server"},{"id":2,"ram":512,"disk":20,"name":"512
89
521
  server"},{"id":3,"ram":1024,"disk":40,"name":"1GB server"},{"id":4,"ram":2048,"disk":80,"name":"2GB
90
522
  server"},{"id":5,"ram":4096,"disk":160,"name":"4GB server"},{"id":6,"ram":8192,"disk":320,"name":"8GB
91
523
  server"},{"id":7,"ram":15872,"disk":620,"name":"15.5GB server"},{"id":8,"ram":30720,"disk":1200,"name":"30GB
92
524
  server"}]}'
93
525
  http_version:
94
- recorded_at: Wed, 26 Jun 2013 16:49:01 GMT
526
+ recorded_at: Tue, 22 Oct 2013 20:16:57 GMT
95
527
  - request:
96
528
  method: get
97
- uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/1.json?ignore_awful_caching1372265341
529
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/1.json
98
530
  body:
99
531
  encoding: US-ASCII
100
532
  string: ''
101
533
  headers:
102
534
  User-Agent:
103
- - fog/1.10.1
535
+ - fog/1.16.0
104
536
  Content-Type:
105
537
  - application/json
538
+ Accept:
539
+ - application/json
106
540
  X-Auth-Token: _ONE-TIME-TOKEN_
107
541
  response:
108
542
  status:
109
- code: 200
543
+ code: 203
110
544
  message:
111
545
  headers:
112
- Server:
113
- - Apache-Coyote/1.1
114
- vary:
115
- - Accept, Accept-Encoding, X-Auth-Token
116
- Last-Modified:
117
- - Wed, 19 Sep 2007 18:24:59 GMT
118
- X-PURGE-KEY:
119
- - /flavors
120
546
  Cache-Control:
121
547
  - s-maxage=1800
122
548
  Content-Type:
123
549
  - application/json
550
+ Via:
551
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
552
+ Last-Modified:
553
+ - Wed, 19 Sep 2007 18:24:59 GMT
554
+ x-purge-key:
555
+ - /flavors
556
+ Vary:
557
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
558
+ Server:
559
+ - Jetty(8.0.y.z-SNAPSHOT)
124
560
  Content-Length:
125
561
  - '59'
126
562
  Date:
127
- - Wed, 26 Jun 2013 16:49:01 GMT
563
+ - Tue, 22 Oct 2013 20:16:58 GMT
128
564
  X-Varnish: _VARNISH-REQUEST-ID_
129
565
  Age:
130
- - '0'
131
- Via:
132
- - 1.1 varnish
566
+ - '461'
133
567
  Connection:
134
568
  - keep-alive
135
569
  body:
136
- encoding: US-ASCII
570
+ encoding: UTF-8
137
571
  string: ! '{"flavor":{"id":1,"ram":256,"disk":10,"name":"256 server"}}'
138
572
  http_version:
139
- recorded_at: Wed, 26 Jun 2013 16:49:01 GMT
573
+ recorded_at: Tue, 22 Oct 2013 20:16:58 GMT
140
574
  - request:
141
575
  method: get
142
- uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/2.json?ignore_awful_caching1372265341
576
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/2.json
143
577
  body:
144
578
  encoding: US-ASCII
145
579
  string: ''
146
580
  headers:
147
581
  User-Agent:
148
- - fog/1.10.1
582
+ - fog/1.16.0
149
583
  Content-Type:
150
584
  - application/json
585
+ Accept:
586
+ - application/json
151
587
  X-Auth-Token: _ONE-TIME-TOKEN_
152
588
  response:
153
589
  status:
154
590
  code: 200
155
591
  message:
156
592
  headers:
157
- Server:
158
- - Apache-Coyote/1.1
159
- vary:
160
- - Accept, Accept-Encoding, X-Auth-Token
161
- Last-Modified:
162
- - Wed, 19 Sep 2007 18:25:10 GMT
163
- X-PURGE-KEY:
164
- - /flavors
165
593
  Cache-Control:
166
594
  - s-maxage=1800
167
595
  Content-Type:
168
596
  - application/json
597
+ Via:
598
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
599
+ Last-Modified:
600
+ - Wed, 19 Sep 2007 18:25:10 GMT
601
+ x-purge-key:
602
+ - /flavors
603
+ Vary:
604
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
605
+ Server:
606
+ - Jetty(8.0.y.z-SNAPSHOT)
169
607
  Content-Length:
170
608
  - '59'
171
609
  Date:
172
- - Wed, 26 Jun 2013 16:49:01 GMT
610
+ - Tue, 22 Oct 2013 20:16:59 GMT
173
611
  X-Varnish: _VARNISH-REQUEST-ID_
174
612
  Age:
175
613
  - '0'
176
- Via:
177
- - 1.1 varnish
178
614
  Connection:
179
615
  - keep-alive
180
616
  body:
181
- encoding: US-ASCII
617
+ encoding: UTF-8
182
618
  string: ! '{"flavor":{"id":2,"ram":512,"disk":20,"name":"512 server"}}'
183
619
  http_version:
184
- recorded_at: Wed, 26 Jun 2013 16:49:01 GMT
620
+ recorded_at: Tue, 22 Oct 2013 20:16:59 GMT
185
621
  - request:
186
622
  method: get
187
- uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/3.json?ignore_awful_caching1372265341
623
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/3.json
188
624
  body:
189
625
  encoding: US-ASCII
190
626
  string: ''
191
627
  headers:
192
628
  User-Agent:
193
- - fog/1.10.1
629
+ - fog/1.16.0
194
630
  Content-Type:
195
631
  - application/json
632
+ Accept:
633
+ - application/json
196
634
  X-Auth-Token: _ONE-TIME-TOKEN_
197
635
  response:
198
636
  status:
199
- code: 200
637
+ code: 203
200
638
  message:
201
639
  headers:
202
- Server:
203
- - Apache-Coyote/1.1
204
- vary:
205
- - Accept, Accept-Encoding, X-Auth-Token
206
- Last-Modified:
207
- - Fri, 21 Sep 2007 23:11:39 GMT
208
- X-PURGE-KEY:
209
- - /flavors
210
640
  Cache-Control:
211
641
  - s-maxage=1800
212
642
  Content-Type:
213
643
  - application/json
644
+ Via:
645
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
646
+ Last-Modified:
647
+ - Fri, 21 Sep 2007 23:11:39 GMT
648
+ x-purge-key:
649
+ - /flavors
650
+ Vary:
651
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
652
+ Server:
653
+ - Jetty(8.0.y.z-SNAPSHOT)
214
654
  Content-Length:
215
655
  - '60'
216
656
  Date:
217
- - Wed, 26 Jun 2013 16:49:02 GMT
657
+ - Tue, 22 Oct 2013 20:16:59 GMT
218
658
  X-Varnish: _VARNISH-REQUEST-ID_
219
659
  Age:
220
- - '0'
221
- Via:
222
- - 1.1 varnish
660
+ - '461'
223
661
  Connection:
224
662
  - keep-alive
225
663
  body:
226
- encoding: US-ASCII
664
+ encoding: UTF-8
227
665
  string: ! '{"flavor":{"id":3,"ram":1024,"disk":40,"name":"1GB server"}}'
228
666
  http_version:
229
- recorded_at: Wed, 26 Jun 2013 16:49:02 GMT
667
+ recorded_at: Tue, 22 Oct 2013 20:16:59 GMT
230
668
  - request:
231
669
  method: get
232
- uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/4.json?ignore_awful_caching1372265342
670
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/4.json
233
671
  body:
234
672
  encoding: US-ASCII
235
673
  string: ''
236
674
  headers:
237
675
  User-Agent:
238
- - fog/1.10.1
676
+ - fog/1.16.0
239
677
  Content-Type:
240
678
  - application/json
679
+ Accept:
680
+ - application/json
241
681
  X-Auth-Token: _ONE-TIME-TOKEN_
242
682
  response:
243
683
  status:
244
684
  code: 200
245
685
  message:
246
686
  headers:
247
- Server:
248
- - Apache-Coyote/1.1
249
- vary:
250
- - Accept, Accept-Encoding, X-Auth-Token
251
- Last-Modified:
252
- - Wed, 19 Sep 2007 18:25:33 GMT
253
- X-PURGE-KEY:
254
- - /flavors
255
687
  Cache-Control:
256
688
  - s-maxage=1800
257
689
  Content-Type:
258
690
  - application/json
691
+ Via:
692
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
693
+ Last-Modified:
694
+ - Wed, 19 Sep 2007 18:25:33 GMT
695
+ x-purge-key:
696
+ - /flavors
697
+ Vary:
698
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
699
+ Server:
700
+ - Jetty(8.0.y.z-SNAPSHOT)
259
701
  Content-Length:
260
702
  - '60'
261
703
  Date:
262
- - Wed, 26 Jun 2013 16:49:02 GMT
704
+ - Tue, 22 Oct 2013 20:17:00 GMT
263
705
  X-Varnish: _VARNISH-REQUEST-ID_
264
706
  Age:
265
707
  - '0'
266
- Via:
267
- - 1.1 varnish
268
708
  Connection:
269
709
  - keep-alive
270
710
  body:
271
- encoding: US-ASCII
711
+ encoding: UTF-8
272
712
  string: ! '{"flavor":{"id":4,"ram":2048,"disk":80,"name":"2GB server"}}'
273
713
  http_version:
274
- recorded_at: Wed, 26 Jun 2013 16:49:02 GMT
714
+ recorded_at: Tue, 22 Oct 2013 20:17:00 GMT
275
715
  - request:
276
716
  method: get
277
- uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/5.json?ignore_awful_caching1372265342
717
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/5.json
278
718
  body:
279
719
  encoding: US-ASCII
280
720
  string: ''
281
721
  headers:
282
722
  User-Agent:
283
- - fog/1.10.1
723
+ - fog/1.16.0
284
724
  Content-Type:
285
725
  - application/json
726
+ Accept:
727
+ - application/json
286
728
  X-Auth-Token: _ONE-TIME-TOKEN_
287
729
  response:
288
730
  status:
289
731
  code: 200
290
732
  message:
291
733
  headers:
292
- Server:
293
- - Apache-Coyote/1.1
294
- vary:
295
- - Accept, Accept-Encoding, X-Auth-Token
296
- Last-Modified:
297
- - Tue, 18 Mar 2008 17:54:15 GMT
298
- X-PURGE-KEY:
299
- - /flavors
300
734
  Cache-Control:
301
735
  - s-maxage=1800
302
736
  Content-Type:
303
737
  - application/json
738
+ Via:
739
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
740
+ Last-Modified:
741
+ - Tue, 18 Mar 2008 17:54:15 GMT
742
+ x-purge-key:
743
+ - /flavors
744
+ Vary:
745
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
746
+ Server:
747
+ - Jetty(8.0.y.z-SNAPSHOT)
304
748
  Content-Length:
305
749
  - '61'
306
750
  Date:
307
- - Wed, 26 Jun 2013 16:49:02 GMT
751
+ - Tue, 22 Oct 2013 20:17:01 GMT
308
752
  X-Varnish: _VARNISH-REQUEST-ID_
309
753
  Age:
310
754
  - '0'
311
- Via:
312
- - 1.1 varnish
313
755
  Connection:
314
756
  - keep-alive
315
757
  body:
316
- encoding: US-ASCII
758
+ encoding: UTF-8
317
759
  string: ! '{"flavor":{"id":5,"ram":4096,"disk":160,"name":"4GB server"}}'
318
760
  http_version:
319
- recorded_at: Wed, 26 Jun 2013 16:49:02 GMT
761
+ recorded_at: Tue, 22 Oct 2013 20:17:01 GMT
320
762
  - request:
321
763
  method: get
322
- uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/6.json?ignore_awful_caching1372265342
764
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/6.json
323
765
  body:
324
766
  encoding: US-ASCII
325
767
  string: ''
326
768
  headers:
327
769
  User-Agent:
328
- - fog/1.10.1
770
+ - fog/1.16.0
329
771
  Content-Type:
330
772
  - application/json
773
+ Accept:
774
+ - application/json
331
775
  X-Auth-Token: _ONE-TIME-TOKEN_
332
776
  response:
333
777
  status:
334
- code: 200
778
+ code: 203
335
779
  message:
336
780
  headers:
337
- Server:
338
- - Apache-Coyote/1.1
339
- vary:
340
- - Accept, Accept-Encoding, X-Auth-Token
341
- Last-Modified:
342
- - Mon, 28 Jan 2008 13:35:30 GMT
343
- X-PURGE-KEY:
344
- - /flavors
345
781
  Cache-Control:
346
782
  - s-maxage=1800
347
783
  Content-Type:
348
784
  - application/json
785
+ Via:
786
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
787
+ Last-Modified:
788
+ - Mon, 28 Jan 2008 13:35:30 GMT
789
+ x-purge-key:
790
+ - /flavors
791
+ Vary:
792
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
793
+ Server:
794
+ - Jetty(8.0.y.z-SNAPSHOT)
349
795
  Content-Length:
350
796
  - '61'
351
797
  Date:
352
- - Wed, 26 Jun 2013 16:49:03 GMT
798
+ - Tue, 22 Oct 2013 20:17:01 GMT
353
799
  X-Varnish: _VARNISH-REQUEST-ID_
354
800
  Age:
355
- - '0'
356
- Via:
357
- - 1.1 varnish
801
+ - '30'
358
802
  Connection:
359
803
  - keep-alive
360
804
  body:
361
- encoding: US-ASCII
805
+ encoding: UTF-8
362
806
  string: ! '{"flavor":{"id":6,"ram":8192,"disk":320,"name":"8GB server"}}'
363
807
  http_version:
364
- recorded_at: Wed, 26 Jun 2013 16:49:03 GMT
808
+ recorded_at: Tue, 22 Oct 2013 20:17:01 GMT
365
809
  - request:
366
810
  method: get
367
- uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/7.json?ignore_awful_caching1372265343
811
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/7.json
368
812
  body:
369
813
  encoding: US-ASCII
370
814
  string: ''
371
815
  headers:
372
816
  User-Agent:
373
- - fog/1.10.1
817
+ - fog/1.16.0
374
818
  Content-Type:
375
819
  - application/json
820
+ Accept:
821
+ - application/json
376
822
  X-Auth-Token: _ONE-TIME-TOKEN_
377
823
  response:
378
824
  status:
379
- code: 200
825
+ code: 203
380
826
  message:
381
827
  headers:
382
- Server:
383
- - Apache-Coyote/1.1
384
- vary:
385
- - Accept, Accept-Encoding, X-Auth-Token
386
- Last-Modified:
387
- - Fri, 01 Apr 2011 00:02:01 GMT
388
- X-PURGE-KEY:
389
- - /flavors
390
828
  Cache-Control:
391
829
  - s-maxage=1800
392
830
  Content-Type:
393
831
  - application/json
832
+ Via:
833
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
834
+ Last-Modified:
835
+ - Fri, 01 Apr 2011 00:02:01 GMT
836
+ x-purge-key:
837
+ - /flavors
838
+ Vary:
839
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
840
+ Server:
841
+ - Jetty(8.0.y.z-SNAPSHOT)
394
842
  Content-Length:
395
843
  - '65'
396
844
  Date:
397
- - Wed, 26 Jun 2013 16:49:03 GMT
845
+ - Tue, 22 Oct 2013 20:17:02 GMT
398
846
  X-Varnish: _VARNISH-REQUEST-ID_
399
847
  Age:
400
- - '0'
401
- Via:
402
- - 1.1 varnish
848
+ - '460'
403
849
  Connection:
404
850
  - keep-alive
405
851
  body:
406
- encoding: US-ASCII
852
+ encoding: UTF-8
407
853
  string: ! '{"flavor":{"id":7,"ram":15872,"disk":620,"name":"15.5GB server"}}'
408
854
  http_version:
409
- recorded_at: Wed, 26 Jun 2013 16:49:03 GMT
855
+ recorded_at: Tue, 22 Oct 2013 20:17:02 GMT
410
856
  - request:
411
857
  method: get
412
- uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/8.json?ignore_awful_caching1372265343
858
+ uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/8.json
413
859
  body:
414
860
  encoding: US-ASCII
415
861
  string: ''
416
862
  headers:
417
863
  User-Agent:
418
- - fog/1.10.1
864
+ - fog/1.16.0
419
865
  Content-Type:
420
866
  - application/json
867
+ Accept:
868
+ - application/json
421
869
  X-Auth-Token: _ONE-TIME-TOKEN_
422
870
  response:
423
871
  status:
424
- code: 200
872
+ code: 203
425
873
  message:
426
874
  headers:
427
- Server:
428
- - Apache-Coyote/1.1
429
- vary:
430
- - Accept, Accept-Encoding, X-Auth-Token
431
- Last-Modified:
432
- - Tue, 06 Dec 2011 17:31:55 GMT
433
- X-PURGE-KEY:
434
- - /flavors
435
875
  Cache-Control:
436
876
  - s-maxage=1800
437
877
  Content-Type:
438
878
  - application/json
879
+ Via:
880
+ - 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
881
+ Last-Modified:
882
+ - Tue, 06 Dec 2011 17:31:55 GMT
883
+ x-purge-key:
884
+ - /flavors
885
+ Vary:
886
+ - Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
887
+ Server:
888
+ - Jetty(8.0.y.z-SNAPSHOT)
439
889
  Content-Length:
440
890
  - '64'
441
891
  Date:
442
- - Wed, 26 Jun 2013 16:49:03 GMT
892
+ - Tue, 22 Oct 2013 20:17:02 GMT
443
893
  X-Varnish: _VARNISH-REQUEST-ID_
444
894
  Age:
445
- - '0'
446
- Via:
447
- - 1.1 varnish
895
+ - '459'
448
896
  Connection:
449
897
  - keep-alive
450
898
  body:
451
- encoding: US-ASCII
899
+ encoding: UTF-8
452
900
  string: ! '{"flavor":{"id":8,"ram":30720,"disk":1200,"name":"30GB server"}}'
453
901
  http_version:
454
- recorded_at: Wed, 26 Jun 2013 16:49:03 GMT
902
+ recorded_at: Tue, 22 Oct 2013 20:17:02 GMT
455
903
  recorded_with: VCR 2.5.0