bosh-stemcell 1.5.0.pre.1113

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.
Files changed (50) hide show
  1. data/.rspec +3 -0
  2. data/README.md +104 -0
  3. data/Vagrantfile +37 -0
  4. data/bosh-stemcell.gemspec +28 -0
  5. data/lib/bosh/stemcell.rb +4 -0
  6. data/lib/bosh/stemcell/archive.rb +59 -0
  7. data/lib/bosh/stemcell/archive_filename.rb +29 -0
  8. data/lib/bosh/stemcell/aws/ami.rb +58 -0
  9. data/lib/bosh/stemcell/aws/light_stemcell.rb +44 -0
  10. data/lib/bosh/stemcell/aws/region.rb +15 -0
  11. data/lib/bosh/stemcell/builder_command.rb +174 -0
  12. data/lib/bosh/stemcell/builder_options.rb +85 -0
  13. data/lib/bosh/stemcell/disk_image.rb +61 -0
  14. data/lib/bosh/stemcell/infrastructure.rb +49 -0
  15. data/lib/bosh/stemcell/operating_system.rb +31 -0
  16. data/lib/bosh/stemcell/stage_collection.rb +154 -0
  17. data/lib/bosh/stemcell/stage_runner.rb +53 -0
  18. data/lib/bosh/stemcell/version.rb +5 -0
  19. data/lib/monkeypatch/serverspec/backend/exec.rb +86 -0
  20. data/spec/assets/fake-stemcell-aws.tgz +0 -0
  21. data/spec/assets/fake-stemcell-vsphere.tgz +0 -0
  22. data/spec/assets/light-fake-stemcell-aws.tgz +0 -0
  23. data/spec/bosh/monkeypatch/serverspec/backend/exec_spec.rb +46 -0
  24. data/spec/bosh/stemcell/archive_filename_spec.rb +42 -0
  25. data/spec/bosh/stemcell/archive_spec.rb +98 -0
  26. data/spec/bosh/stemcell/aws/ami_spec.rb +30 -0
  27. data/spec/bosh/stemcell/aws/light_stemcell_spec.rb +94 -0
  28. data/spec/bosh/stemcell/aws/region_spec.rb +12 -0
  29. data/spec/bosh/stemcell/builder_command_spec.rb +241 -0
  30. data/spec/bosh/stemcell/builder_options_spec.rb +201 -0
  31. data/spec/bosh/stemcell/disk_image_spec.rb +163 -0
  32. data/spec/bosh/stemcell/infrastructure_spec.rb +66 -0
  33. data/spec/bosh/stemcell/operating_system_spec.rb +47 -0
  34. data/spec/bosh/stemcell/stage_collection_spec.rb +213 -0
  35. data/spec/bosh/stemcell/stage_runner_spec.rb +141 -0
  36. data/spec/bosh/stemcell/version_spec.rb +12 -0
  37. data/spec/bosh/stemcell_spec.rb +6 -0
  38. data/spec/spec_helper.rb +6 -0
  39. data/spec/stemcells/aws_spec.rb +9 -0
  40. data/spec/stemcells/centos_spec.rb +131 -0
  41. data/spec/stemcells/openstack_spec.rb +9 -0
  42. data/spec/stemcells/ubuntu_spec.rb +143 -0
  43. data/spec/stemcells/vsphere_spec.rb +9 -0
  44. data/spec/support/rspec_fire.rb +9 -0
  45. data/spec/support/serverspec.rb +4 -0
  46. data/spec/support/spec_assets.rb +11 -0
  47. data/spec/support/stemcell_image.rb +26 -0
  48. data/spec/support/stemcell_shared_examples.rb +43 -0
  49. data/spec/support/stub_env.rb +5 -0
  50. metadata +236 -0
@@ -0,0 +1,9 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'OpenStack Stemcell' do
4
+ context 'installed by system_parameters' do
5
+ describe file('/var/vcap/bosh/etc/infrastructure') do
6
+ it { should contain('openstack') }
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,143 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Ubuntu Stemcell' do
4
+
5
+ it_behaves_like 'a stemcell'
6
+
7
+ describe package('apt') do
8
+ it { should be_installed }
9
+ end
10
+
11
+ describe package('rpm') do
12
+ it { should_not be_installed }
13
+ end
14
+
15
+ context 'installed by base_debootstrap' do
16
+ {
17
+ 'ubuntu-minimal' => '1.197',
18
+ }.each do |pkg, version|
19
+ describe package(pkg) do
20
+ it { should be_installed.with_version(version) }
21
+ end
22
+ end
23
+
24
+ describe file('/etc/lsb-release') do
25
+ it { should be_file }
26
+ it { should contain 'DISTRIB_RELEASE=10.04' }
27
+ it { should contain 'DISTRIB_CODENAME=lucid' }
28
+ end
29
+ end
30
+
31
+ context 'installed by base_apt' do
32
+ {
33
+ 'upstart' => '0.6.5-8',
34
+ 'build-essential' => '11.4build1',
35
+ 'libssl-dev' => '0.9.8k-7ubuntu8.15',
36
+ 'lsof' => '4.81.dfsg.1-1build1',
37
+ 'strace' => '4.5.19-2',
38
+ 'bind9-host' => '1:9.7.0.dfsg.P1-1ubuntu0.10',
39
+ 'dnsutils' => '1:9.7.0.dfsg.P1-1ubuntu0.10',
40
+ 'tcpdump' => '4.0.0-6ubuntu3',
41
+ 'iputils-arping' => '3:20071127-2ubuntu1',
42
+ 'curl' => '7.19.7-1ubuntu1.3',
43
+ 'wget' => '1.12-1.1ubuntu2.1',
44
+ 'libcurl3' => '7.19.7-1ubuntu1.3',
45
+ 'libcurl4-openssl-dev' => '7.19.7-1ubuntu1.3', # installed because of 'libcurl3-dev'
46
+ 'bison' => '1:2.4.1.dfsg-3',
47
+ 'libreadline6-dev' => '6.1-1',
48
+ 'libxml2' => '2.7.6.dfsg-1ubuntu1.10',
49
+ 'libxml2-dev' => '2.7.6.dfsg-1ubuntu1.10',
50
+ 'libxslt1.1' => '1.1.26-1ubuntu1.2',
51
+ 'libxslt1-dev' => '1.1.26-1ubuntu1.2',
52
+ 'zip' => '3.0-2',
53
+ 'unzip' => '6.0-1build1',
54
+ 'nfs-common' => '1:1.2.0-4ubuntu4.2',
55
+ 'flex' => '2.5.35-9',
56
+ 'psmisc' => '22.10-1',
57
+ 'apparmor-utils' => '2.5.1-0ubuntu0.10.04.4',
58
+ 'iptables' => '1.4.4-2ubuntu2',
59
+ 'sysstat' => '9.0.6-2',
60
+ 'rsync' => '3.0.7-1ubuntu1.1',
61
+ 'openssh-server' => '1:5.3p1-3ubuntu7',
62
+ 'traceroute' => '2.0.13-2',
63
+ 'libncurses5-dev' => '5.7+20090803-2ubuntu3',
64
+ 'quota' => '3.17-6',
65
+ 'libaio1' => '0.3.107-3ubuntu2',
66
+ 'gdb' => '7.1-1ubuntu2',
67
+ 'tripwire' => '2.3.1.2.0-13',
68
+ 'libcap2-bin' => '1:2.17-2ubuntu1.1',
69
+ 'libcap-dev' => '1:2.17-2ubuntu1.1',
70
+ 'libbz2-dev' => '1.0.5-4ubuntu0.2',
71
+ 'libyaml-dev' => '0.1.3-1',
72
+ 'cmake' => '2.8.0-5ubuntu1',
73
+ 'scsitools' => '0.10-2.1ubuntu2',
74
+ 'mg' => '20090107-3',
75
+ 'htop' => '0.8.3-1ubuntu1',
76
+ 'module-assistant' => '0.11.2ubuntu1',
77
+ 'debhelper' => '7.4.15ubuntu1',
78
+ 'runit' => '2.0.0-1ubuntu4',
79
+ 'sudo' => '1.7.2p1-1ubuntu5.6',
80
+ 'rsyslog' => '4.2.0-2ubuntu8.1',
81
+ 'rsyslog-relp' => '4.2.0-2ubuntu8.1',
82
+ }.each do |pkg, version|
83
+ describe package(pkg) do
84
+ it { should be_installed.with_version(version) }
85
+ end
86
+ end
87
+
88
+ describe file('/sbin/rescan-scsi-bus.sh') do
89
+ it { should be_file }
90
+ it { should be_executable }
91
+ end
92
+ end
93
+
94
+ context 'installed by system_grub' do
95
+ {
96
+ 'grub' => '0.97-29ubuntu60.10.04.2',
97
+ }.each do |pkg, version|
98
+ describe package(pkg) do
99
+ it { should be_installed.with_version(version) }
100
+ end
101
+ end
102
+
103
+ %w(e2fs_stage1_5 stage1 stage2).each do |grub_stage|
104
+ describe file("/boot/grub/#{grub_stage}") do
105
+ it { should be_file }
106
+ end
107
+ end
108
+ end
109
+
110
+ context 'installed by system_kernel' do
111
+ {
112
+ 'linux-image-virtual-lts-backport-oneiric' => '3.0.0.32.20',
113
+ 'linux-headers-virtual-lts-backport-oneiric' => '3.0.0.32.20',
114
+ }.each do |pkg, version|
115
+ describe package(pkg) do
116
+ it { should be_installed.with_version(version) }
117
+ end
118
+ end
119
+ end
120
+
121
+ context 'installed by image_install_grub' do
122
+ describe file('/boot/grub/grub.conf') do
123
+ it { should be_file }
124
+ it { should contain 'default=0' }
125
+ it { should contain 'timeout=1' }
126
+ it { should contain 'title Ubuntu 10.04.4 LTS (3.0.0-32-virtual)' }
127
+ it { should contain ' root (hd0,0)' }
128
+ it { should contain ' kernel /boot/vmlinuz-3.0.0-32-virtual ro root=UUID=' }
129
+ it { should contain ' initrd /boot/initrd.img-3.0.0-32-virtual' }
130
+ end
131
+
132
+ describe file('/boot/grub/menu.lst') do
133
+ before { pending 'until aws/openstack stop clobbering the symlink with "update-grub"' }
134
+ it { should be_linked_to('./grub.conf') }
135
+ end
136
+ end
137
+
138
+ context 'installed by system_parameters' do
139
+ describe file('/var/vcap/bosh/etc/operating_system') do
140
+ it { should contain('ubuntu') }
141
+ end
142
+ end
143
+ end
@@ -0,0 +1,9 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'vSphere Stemcell' do
4
+ context 'installed by system_parameters' do
5
+ describe file('/var/vcap/bosh/etc/infrastructure') do
6
+ it { should contain('vsphere') }
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'rspec/fire'
2
+
3
+ RSpec.configure do |config|
4
+ config.include(RSpec::Fire)
5
+ end
6
+
7
+ RSpec::Fire.configure do |config|
8
+ config.verify_constant_names = true
9
+ end
@@ -0,0 +1,4 @@
1
+ require 'monkeypatch/serverspec/backend/exec'
2
+
3
+ include Serverspec::Helper::Exec
4
+ include Serverspec::Helper::DetectOS
@@ -0,0 +1,11 @@
1
+ module Bosh::Stemcell
2
+ module SpecAssets
3
+ def spec_asset(name)
4
+ File.expand_path(File.join('..', 'assets', name), File.dirname(__FILE__))
5
+ end
6
+ end
7
+ end
8
+
9
+ RSpec.configure do |config|
10
+ config.include(Bosh::Stemcell::SpecAssets)
11
+ end
@@ -0,0 +1,26 @@
1
+ require 'bosh/stemcell/disk_image'
2
+
3
+ def wrap_server_spec_example(example)
4
+ if ENV['STEMCELL_IMAGE']
5
+ Bosh::Stemcell::DiskImage.new(image_file_path: ENV['STEMCELL_IMAGE']).while_mounted do |disk_image|
6
+ Serverspec::Backend::Exec.instance.chroot_dir = disk_image.image_mount_point
7
+ example.run
8
+ end
9
+ else
10
+ example.run
11
+ end
12
+ end
13
+
14
+ RSpec.configure do |config|
15
+ config.before(:all, example_group: { file_path: /spec\/stemcells/ }) do
16
+ pending 'ENV["STEMCELL_IMAGE"] must be set to test Stemcells' unless ENV['STEMCELL_IMAGE']
17
+ end
18
+
19
+ config.around(example_group: { file_path: /spec\/stemcells/ }) do |example|
20
+ wrap_server_spec_example(example)
21
+ end
22
+
23
+ config.around(example_group: { file_path: /support\/stemcell_shared_example/ }) do |example|
24
+ wrap_server_spec_example(example)
25
+ end
26
+ end
@@ -0,0 +1,43 @@
1
+ shared_examples_for 'a stemcell' do
2
+ describe 'installed by bosh_ruby' do
3
+ describe command('/var/vcap/bosh/bin/ruby -r yaml -e "Psych::SyntaxError"') do
4
+ it { should return_exit_status(0) }
5
+ end
6
+ end
7
+
8
+ describe 'installed by bosh_agent' do
9
+ describe command('/var/vcap/bosh/bin/ruby -r bosh_agent -e "Bosh::Agent"') do
10
+ it { should return_exit_status(0) }
11
+ end
12
+ end
13
+
14
+ context 'installed by bosh_sudoers' do
15
+ describe file('/etc/sudoers') do
16
+ it { should be_file }
17
+ it { should contain '#includedir /etc/sudoers.d' }
18
+ end
19
+ end
20
+
21
+ context 'installed by bosh_micro' do
22
+ describe file('/var/vcap/micro/apply_spec.yml') do
23
+ it { should be_file }
24
+ it { should contain 'deployment: micro' }
25
+ it { should contain 'powerdns' }
26
+ end
27
+
28
+ describe file('/var/vcap/micro_bosh/data/cache') do
29
+ it { should be_a_directory }
30
+ end
31
+ end
32
+
33
+ # currently `should cotain` on a file does not properly escape $PATH
34
+ context 'installed by bosh_users' do
35
+ describe command("grep -q 'export PATH=/var/vcap/bosh/bin:\\$PATH\n' /root/.bashrc") do
36
+ it { should return_exit_status(0) }
37
+ end
38
+
39
+ describe command("grep -q 'export PATH=/var/vcap/bosh/bin:\\$PATH\n' /home/vcap/.bashrc") do
40
+ it { should return_exit_status(0) }
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,5 @@
1
+ RSpec.configure do |config|
2
+ config.before do
3
+ stub_const('ENV', {})
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,236 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bosh-stemcell
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.5.0.pre.1113
5
+ prerelease: 6
6
+ platform: ruby
7
+ authors:
8
+ - Pivotal
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-10-16 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bosh_aws_cpi
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 1.5.0.pre.1113
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 1.5.0.pre.1113
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: rspec
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: rspec-fire
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: timecop
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: serverspec
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: foodcritic
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ description: Bosh::Stemcell provides tools to manage stemcells
127
+ email: support@cloudfoundry.com
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files: []
131
+ files:
132
+ - .rspec
133
+ - README.md
134
+ - Vagrantfile
135
+ - bosh-stemcell.gemspec
136
+ - lib/bosh/stemcell.rb
137
+ - lib/bosh/stemcell/archive.rb
138
+ - lib/bosh/stemcell/archive_filename.rb
139
+ - lib/bosh/stemcell/aws/ami.rb
140
+ - lib/bosh/stemcell/aws/light_stemcell.rb
141
+ - lib/bosh/stemcell/aws/region.rb
142
+ - lib/bosh/stemcell/builder_command.rb
143
+ - lib/bosh/stemcell/builder_options.rb
144
+ - lib/bosh/stemcell/disk_image.rb
145
+ - lib/bosh/stemcell/infrastructure.rb
146
+ - lib/bosh/stemcell/operating_system.rb
147
+ - lib/bosh/stemcell/stage_collection.rb
148
+ - lib/bosh/stemcell/stage_runner.rb
149
+ - lib/bosh/stemcell/version.rb
150
+ - lib/monkeypatch/serverspec/backend/exec.rb
151
+ - spec/assets/fake-stemcell-aws.tgz
152
+ - spec/assets/fake-stemcell-vsphere.tgz
153
+ - spec/assets/light-fake-stemcell-aws.tgz
154
+ - spec/bosh/monkeypatch/serverspec/backend/exec_spec.rb
155
+ - spec/bosh/stemcell/archive_filename_spec.rb
156
+ - spec/bosh/stemcell/archive_spec.rb
157
+ - spec/bosh/stemcell/aws/ami_spec.rb
158
+ - spec/bosh/stemcell/aws/light_stemcell_spec.rb
159
+ - spec/bosh/stemcell/aws/region_spec.rb
160
+ - spec/bosh/stemcell/builder_command_spec.rb
161
+ - spec/bosh/stemcell/builder_options_spec.rb
162
+ - spec/bosh/stemcell/disk_image_spec.rb
163
+ - spec/bosh/stemcell/infrastructure_spec.rb
164
+ - spec/bosh/stemcell/operating_system_spec.rb
165
+ - spec/bosh/stemcell/stage_collection_spec.rb
166
+ - spec/bosh/stemcell/stage_runner_spec.rb
167
+ - spec/bosh/stemcell/version_spec.rb
168
+ - spec/bosh/stemcell_spec.rb
169
+ - spec/spec_helper.rb
170
+ - spec/stemcells/aws_spec.rb
171
+ - spec/stemcells/centos_spec.rb
172
+ - spec/stemcells/openstack_spec.rb
173
+ - spec/stemcells/ubuntu_spec.rb
174
+ - spec/stemcells/vsphere_spec.rb
175
+ - spec/support/rspec_fire.rb
176
+ - spec/support/serverspec.rb
177
+ - spec/support/spec_assets.rb
178
+ - spec/support/stemcell_image.rb
179
+ - spec/support/stemcell_shared_examples.rb
180
+ - spec/support/stub_env.rb
181
+ homepage: https://github.com/cloudfoundry/bosh
182
+ licenses:
183
+ - Apache 2.0
184
+ post_install_message:
185
+ rdoc_options: []
186
+ require_paths:
187
+ - lib
188
+ required_ruby_version: !ruby/object:Gem::Requirement
189
+ none: false
190
+ requirements:
191
+ - - ! '>='
192
+ - !ruby/object:Gem::Version
193
+ version: 1.9.3
194
+ required_rubygems_version: !ruby/object:Gem::Requirement
195
+ none: false
196
+ requirements:
197
+ - - ! '>'
198
+ - !ruby/object:Gem::Version
199
+ version: 1.3.1
200
+ requirements: []
201
+ rubyforge_project:
202
+ rubygems_version: 1.8.23
203
+ signing_key:
204
+ specification_version: 3
205
+ summary: Bosh::Stemcell provides tools to manage stemcells
206
+ test_files:
207
+ - spec/assets/fake-stemcell-aws.tgz
208
+ - spec/assets/fake-stemcell-vsphere.tgz
209
+ - spec/assets/light-fake-stemcell-aws.tgz
210
+ - spec/bosh/monkeypatch/serverspec/backend/exec_spec.rb
211
+ - spec/bosh/stemcell/archive_filename_spec.rb
212
+ - spec/bosh/stemcell/archive_spec.rb
213
+ - spec/bosh/stemcell/aws/ami_spec.rb
214
+ - spec/bosh/stemcell/aws/light_stemcell_spec.rb
215
+ - spec/bosh/stemcell/aws/region_spec.rb
216
+ - spec/bosh/stemcell/builder_command_spec.rb
217
+ - spec/bosh/stemcell/builder_options_spec.rb
218
+ - spec/bosh/stemcell/disk_image_spec.rb
219
+ - spec/bosh/stemcell/infrastructure_spec.rb
220
+ - spec/bosh/stemcell/operating_system_spec.rb
221
+ - spec/bosh/stemcell/stage_collection_spec.rb
222
+ - spec/bosh/stemcell/stage_runner_spec.rb
223
+ - spec/bosh/stemcell/version_spec.rb
224
+ - spec/bosh/stemcell_spec.rb
225
+ - spec/spec_helper.rb
226
+ - spec/stemcells/aws_spec.rb
227
+ - spec/stemcells/centos_spec.rb
228
+ - spec/stemcells/openstack_spec.rb
229
+ - spec/stemcells/ubuntu_spec.rb
230
+ - spec/stemcells/vsphere_spec.rb
231
+ - spec/support/rspec_fire.rb
232
+ - spec/support/serverspec.rb
233
+ - spec/support/spec_assets.rb
234
+ - spec/support/stemcell_image.rb
235
+ - spec/support/stemcell_shared_examples.rb
236
+ - spec/support/stub_env.rb