bosh-bootstrap 0.11.12 → 0.11.13
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
|
-
|
|
4
|
+
ZmVlZWM0MGViMmI5ZmZiZmY2OWQ0NmZkYWNkZGQ4NDYzNmNjMzBjMQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MzYwN2YxYmNjMzg0ZWQ5MDUzZmIwNzIzYWFhNGU2OTRmZTFmMTE5Mg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NzIwZjAxMzVhNjc2M2I3NmM1NjRhM2IzZDE5ZmY3YzMyMmQ3NWQxNjc1YzMx
|
|
10
|
+
MWQ4NGRlZGIwNjM0NjI3YzQwYTY3ODIwYmJjOTdjN2ExYzdmYzg4MDA1N2Rj
|
|
11
|
+
YmRmOTQ2YzIyOGI3YzJlMjM1NDRjOTMwNzcyNmQ0ZjE2ZGYzZWE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZTUyYmJmYTY0OWUzZGM4YmUzNjFkMjJhMWQ3MjRmNTE4MzkzMDBiZjdkNjM5
|
|
14
|
+
ZTg0ZTg0NDEyM2JmYmIyY2IyOTYwY2EwYWViNmQ5ZWYzODEwY2I5OTkyZWMw
|
|
15
|
+
NjJjODIyZGNlYmQzOTNmZTczZjY1YzAxMjIwNDY3Nzk0OGUxODM=
|
data/ChangeLog.md
CHANGED
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
* Update to newer-er-er stemcell paths from Pivotal's s3 bucket (v0.11.9, v0.11.10)
|
|
34
34
|
* Enlarge persistent disk from 4G to 16G (v0.11.11)
|
|
35
35
|
* bosh_cli gems now on rubygems instead of pivotal s3 bucket (v0.11.12)
|
|
36
|
+
* OpenStack improvements to reduce POST API throttling (v0.11.13)
|
|
36
37
|
|
|
37
38
|
## v0.10
|
|
38
39
|
|
data/README.md
CHANGED
|
@@ -194,7 +194,7 @@ What is actually happening when you run `bosh-bootstrap deploy`?
|
|
|
194
194
|
At the heart of `bosh-bootstrap deploy` is the execution of the micro bosh deployer, a bosh plugin provided to bootstrap a single VM with all the parts of bosh running on it. If you ran this command yourself you would run:
|
|
195
195
|
|
|
196
196
|
```
|
|
197
|
-
$ gem install bosh_cli_plugin_micro
|
|
197
|
+
$ gem install bosh_cli_plugin_micro --pre
|
|
198
198
|
$ bosh micro deployment path/to/manifest/folder
|
|
199
199
|
$ bosh micro deploy ami-43f49d2a
|
|
200
200
|
```
|
|
@@ -21,7 +21,12 @@ module Bosh::Bootstrap::MicroboshProviders
|
|
|
21
21
|
"apply_spec"=>
|
|
22
22
|
{"agent"=>
|
|
23
23
|
{"blobstore"=>{"address"=>public_ip},
|
|
24
|
-
"nats"=>{"address"=>public_ip}}
|
|
24
|
+
"nats"=>{"address"=>public_ip}},
|
|
25
|
+
"properties"=>
|
|
26
|
+
{"director"=>
|
|
27
|
+
{"max_threads"=>3},
|
|
28
|
+
"hm"=>{"resurrector_enabled" => true},
|
|
29
|
+
"ntp"=>["0.north-america.pool.ntp.org","1.north-america.pool.ntp.org"]}}
|
|
25
30
|
})
|
|
26
31
|
end
|
|
27
32
|
|
|
@@ -33,4 +33,12 @@ apply_spec:
|
|
|
33
33
|
blobstore:
|
|
34
34
|
address: 1.2.3.4
|
|
35
35
|
nats:
|
|
36
|
-
address: 1.2.3.4
|
|
36
|
+
address: 1.2.3.4
|
|
37
|
+
properties:
|
|
38
|
+
director:
|
|
39
|
+
max_threads: 3
|
|
40
|
+
hm:
|
|
41
|
+
resurrector_enabled: true
|
|
42
|
+
ntp:
|
|
43
|
+
- 0.north-america.pool.ntp.org
|
|
44
|
+
- 1.north-america.pool.ntp.org
|
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.13
|
|
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-10-
|
|
11
|
+
date: 2013-10-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cyoi
|