bosh-bootstrap 0.11.9 → 0.11.11
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 +8 -8
- data/ChangeLog.md +6 -5
- data/lib/bosh-bootstrap/microbosh.rb +5 -0
- data/lib/bosh-bootstrap/microbosh_providers/aws.rb +1 -1
- data/lib/bosh-bootstrap/version.rb +1 -1
- data/spec/assets/microbosh_yml/micro_bosh.aws_ec2.us-west-2a.yml +1 -1
- data/spec/assets/microbosh_yml/micro_bosh.aws_ec2.yml +1 -1
- data/spec/assets/microbosh_yml/micro_bosh.aws_vpc.yml +1 -1
- data/spec/assets/microbosh_yml/micro_bosh.openstack.yml +1 -1
- data/spec/unit/microbosh_providers/aws_spec.rb +3 -3
- data/spec/unit/microbosh_providers/openstack_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZDViZDdjYjZlZjBjOWE0NGE1MTRjNzI5OTAzMTJjOTZiYTg1MWQwOA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MWMwYWM5NTg3NGY4Nzk5ZTAwZTY1ZTc3NTExYzRhMzkzZDcwMzMzZA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YmE3ZTY0MGZhMTc4MTZmYTUxZWM2M2ZhMTVkYTNlZGZkYTEyNDdjNjdlYWFl
|
|
10
|
+
MTQ5ZTEzOWIwY2M2MTc0MDY5OGU0ODEwZmIxZDg0NTZiYTAzYzY5ZTlhODVm
|
|
11
|
+
NjM4NmNlYzFhMDBhOGEzNGM0ZjJlOTQ5NTVmYzI4M2Q0OTUyMWI=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
M2I3MzdjNDRkOTE0OGMxNDc3OTcyODE4OTk3YTdkMzExNjQwMjEyNzVmYzhi
|
|
14
|
+
ZTQyY2IxNzc1YWQzZmExYTZiNTc1MzViNWVlM2I1MmY3NTU4YjA3ZjE4MGQx
|
|
15
|
+
ODNlMDIyM2NjZGY0NjI5N2RiZTQ0ZjAyMjVjODM0NzgxOTA4OTQ=
|
data/ChangeLog.md
CHANGED
|
@@ -26,11 +26,12 @@
|
|
|
26
26
|
* Ensure CLI loads bundler (v0.11.4)
|
|
27
27
|
* rubygem users should be able to install & run from rubygems instead of source workaround (v0.11.5)
|
|
28
28
|
* microbosh volume is smaller 4G and automatically fits on devstack/openstack (v0.11.5; thx @ryfow)
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
29
|
+
* Security group `bosh_agent_http` renamed to `bosh_agent_https`, with same 6868 port for talking to bosh_agent running in https mode (`bosh_agent_http` can then be deleted) (v0.11.5)
|
|
30
|
+
* Add port 53/dns security group (v0.11.6)
|
|
31
|
+
* Port 53 open on UDP only as workaround for multi-region AWS (v0.11.7; thx @yudai)
|
|
32
|
+
* Suppress bundler git "fatal" warnings (by converting ~/.microbosh into git repo) (v0.11.8)
|
|
33
|
+
* Update to newer-er-er stemcell paths from Pivotal's s3 bucket (v0.11.9, v0.11.10)
|
|
34
|
+
* Enlarge persistent disk from 4G to 16G (v0.11.11)
|
|
34
35
|
|
|
35
36
|
## v0.10
|
|
36
37
|
|
|
@@ -47,6 +47,11 @@ class Bosh::Bootstrap::Microbosh
|
|
|
47
47
|
|
|
48
48
|
protected
|
|
49
49
|
def setup_base_path
|
|
50
|
+
system 'which git'
|
|
51
|
+
if $?.to_i!=0
|
|
52
|
+
puts "Git doesn't seem to be on your path. Maybe it's not installed?"
|
|
53
|
+
exit 1
|
|
54
|
+
end
|
|
50
55
|
sh("git init")
|
|
51
56
|
sh("git add .")
|
|
52
57
|
sh("git commit -m 'Creating repo to suppress bundler warnings'")
|
|
@@ -7,7 +7,7 @@ describe Bosh::Bootstrap::MicroboshProviders::AWS do
|
|
|
7
7
|
|
|
8
8
|
let(:microbosh_yml) { File.expand_path("~/.microbosh/deployments/micro_bosh.yml")}
|
|
9
9
|
let(:aws_jenkins_bucket) { "bosh-jenkins-artifacts" }
|
|
10
|
-
let(:latest_ami_uri) { "http://#{aws_jenkins_bucket}.s3.amazonaws.com/
|
|
10
|
+
let(:latest_ami_uri) { "http://#{aws_jenkins_bucket}.s3.amazonaws.com/last_successful-bosh-stemcell-aws_ami_us-east-1" }
|
|
11
11
|
let(:latest_stemcell_uri) { "http://bosh-jenkins-artifacts.s3.amazonaws.com/bosh-stemcell/aws/bosh-stemcell-latest-aws-xen-ubuntu.tgz" }
|
|
12
12
|
|
|
13
13
|
it "creates micro_bosh.yml manifest" do
|
|
@@ -19,7 +19,7 @@ describe Bosh::Bootstrap::MicroboshProviders::AWS do
|
|
|
19
19
|
setting "key_pair.path", "~/.microbosh/ssh/test-bosh"
|
|
20
20
|
setting "bosh.name", "test-bosh"
|
|
21
21
|
setting "bosh.salted_password", "salted_password"
|
|
22
|
-
setting "bosh.persistent_disk",
|
|
22
|
+
setting "bosh.persistent_disk", 16384
|
|
23
23
|
|
|
24
24
|
subject = Bosh::Bootstrap::MicroboshProviders::AWS.new(microbosh_yml, settings)
|
|
25
25
|
|
|
@@ -38,7 +38,7 @@ describe Bosh::Bootstrap::MicroboshProviders::AWS do
|
|
|
38
38
|
setting "key_pair.path", "~/.microbosh/ssh/test-bosh"
|
|
39
39
|
setting "bosh.name", "test-bosh"
|
|
40
40
|
setting "bosh.salted_password", "salted_password"
|
|
41
|
-
setting "bosh.persistent_disk",
|
|
41
|
+
setting "bosh.persistent_disk", 16384
|
|
42
42
|
|
|
43
43
|
subject = Bosh::Bootstrap::MicroboshProviders::AWS.new(microbosh_yml, settings)
|
|
44
44
|
|
|
@@ -17,7 +17,7 @@ describe Bosh::Bootstrap::MicroboshProviders::OpenStack do
|
|
|
17
17
|
setting "key_pair.path", "~/.microbosh/ssh/test-bosh"
|
|
18
18
|
setting "bosh.name", "test-bosh"
|
|
19
19
|
setting "bosh.salted_password", "salted_password"
|
|
20
|
-
setting "bosh.persistent_disk",
|
|
20
|
+
setting "bosh.persistent_disk", 16384
|
|
21
21
|
|
|
22
22
|
subject = Bosh::Bootstrap::MicroboshProviders::OpenStack.new(microbosh_yml, settings)
|
|
23
23
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bosh-bootstrap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.11.
|
|
4
|
+
version: 0.11.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dr Nic Williams
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-10-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cyoi
|