bosh-stemcell 1.2479.0 → 1.2513.0
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.
@@ -8,6 +8,8 @@ module Bosh::Stemcell
|
|
8
8
|
Aws.new
|
9
9
|
when 'vsphere'
|
10
10
|
Vsphere.new
|
11
|
+
when 'warden'
|
12
|
+
Warden.new
|
11
13
|
when 'vcloud'
|
12
14
|
Vcloud.new
|
13
15
|
when 'null'
|
@@ -68,5 +70,11 @@ module Bosh::Stemcell
|
|
68
70
|
super(name: 'aws', hypervisor: 'xen', supports_light_stemcell: true, default_disk_size: 2048)
|
69
71
|
end
|
70
72
|
end
|
73
|
+
|
74
|
+
class Warden < Base
|
75
|
+
def initialize
|
76
|
+
super(name: 'warden', hypervisor: 'boshlite', default_disk_size: 2048)
|
77
|
+
end
|
78
|
+
end
|
71
79
|
end
|
72
80
|
end
|
@@ -52,6 +52,8 @@ module Bosh::Stemcell
|
|
52
52
|
vsphere_stages
|
53
53
|
when Infrastructure::Vcloud then
|
54
54
|
vcloud_stages
|
55
|
+
when Infrastructure::Warden then
|
56
|
+
warden_stages
|
55
57
|
end
|
56
58
|
end
|
57
59
|
|
@@ -242,5 +244,21 @@ module Bosh::Stemcell
|
|
242
244
|
:stemcell
|
243
245
|
]
|
244
246
|
end
|
247
|
+
|
248
|
+
def warden_stages
|
249
|
+
[
|
250
|
+
:system_parameters,
|
251
|
+
:base_warden,
|
252
|
+
# Finalisation
|
253
|
+
:bosh_clean,
|
254
|
+
:bosh_harden,
|
255
|
+
# Image copy
|
256
|
+
:bosh_copy_root,
|
257
|
+
# only used for spec test
|
258
|
+
:image_create,
|
259
|
+
# Final stemcell
|
260
|
+
:stemcell,
|
261
|
+
]
|
262
|
+
end
|
245
263
|
end
|
246
264
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bosh-stemcell
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2513.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-04-
|
12
|
+
date: 2014-04-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bosh_aws_cpi
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 1.
|
21
|
+
version: 1.2513.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ~>
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 1.
|
29
|
+
version: 1.2513.0
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: fakefs
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -188,7 +188,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
188
|
version: '0'
|
189
189
|
segments:
|
190
190
|
- 0
|
191
|
-
hash:
|
191
|
+
hash: 4303375941297507132
|
192
192
|
requirements: []
|
193
193
|
rubyforge_project:
|
194
194
|
rubygems_version: 1.8.23
|