bosh-bootstrap 0.10.1 → 0.10.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.
- data/ChangeLog.md +1 -0
- data/lib/bosh-bootstrap/cli.rb +9 -9
- data/lib/bosh-bootstrap/version.rb +1 -1
- metadata +2 -2
data/ChangeLog.md
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
* `deploy --create-inception` chooses to create an inception VM
|
|
15
15
|
* Using `bosh_cli_plugin_micro` (for `bosh micro`) [was `bosh_deployer`] (v1.10.1)
|
|
16
16
|
* `bosh-cloudfoundry` gem installed with prerelease gems (fix in v0.10.1)
|
|
17
|
+
* AWS inception VM gets its attached volume again (v1.10.2)
|
|
17
18
|
|
|
18
19
|
## v0.9
|
|
19
20
|
|
data/lib/bosh-bootstrap/cli.rb
CHANGED
|
@@ -1149,15 +1149,15 @@ module Bosh::Bootstrap
|
|
|
1149
1149
|
end
|
|
1150
1150
|
|
|
1151
1151
|
# Format and mount the volume
|
|
1152
|
-
if aws?
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
else
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
end
|
|
1152
|
+
# if aws?
|
|
1153
|
+
# say "Skipping volume mounting on AWS 12.10 inception VM until its fixed", [:yellow, :bold]
|
|
1154
|
+
# run_ssh_command_until_successful server, "sudo mkdir -p /var/vcap/store"
|
|
1155
|
+
# else
|
|
1156
|
+
say "Mounting persistent disk as volume on inception VM..."
|
|
1157
|
+
run_ssh_command_until_successful server, "sudo mkfs.ext4 #{device} -F"
|
|
1158
|
+
run_ssh_command_until_successful server, "sudo mkdir -p /var/vcap/store"
|
|
1159
|
+
run_ssh_command_until_successful server, "sudo mount #{device} /var/vcap/store"
|
|
1160
|
+
# end
|
|
1161
1161
|
end
|
|
1162
1162
|
|
|
1163
1163
|
def run_ssh_command_until_successful(server, cmd)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bosh-bootstrap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.10.
|
|
4
|
+
version: 0.10.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -375,7 +375,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
375
375
|
version: '0'
|
|
376
376
|
segments:
|
|
377
377
|
- 0
|
|
378
|
-
hash:
|
|
378
|
+
hash: -783619145019025745
|
|
379
379
|
requirements: []
|
|
380
380
|
rubyforge_project:
|
|
381
381
|
rubygems_version: 1.8.25
|