bosh-cloudfoundry 0.4.0 → 0.4.1
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 +4 -0
- data/README.md +4 -1
- data/bosh-cloudfoundry.gemspec +6 -1
- data/lib/bosh-cloudfoundry/system_deployment_manifest_renderer.rb +2 -1
- data/lib/bosh-cloudfoundry/version.rb +1 -1
- data/spec/assets/deployments/aws-core-1-m1.small-free-redis.yml +2 -0
- data/spec/assets/deployments/aws-core-1-m1.xlarge-free-postgresql-2-m1.small-free-postgresql.yml +2 -0
- data/spec/assets/deployments/aws-core-2-m1.xlarge-dea.yml +2 -0
- data/spec/assets/deployments/aws-core-only.yml +2 -0
- data/spec/unit/cf_command_spec.rb +1 -1
- metadata +6 -4
data/ChangeLog.md
CHANGED
data/README.md
CHANGED
@@ -13,7 +13,7 @@ If you have an AWS or OpenStack account then you can deploy a running Cloud Foun
|
|
13
13
|
```
|
14
14
|
# on your laptop
|
15
15
|
gem install bosh-bootstrap
|
16
|
-
bosh-bootstrap deploy
|
16
|
+
bosh-bootstrap deploy
|
17
17
|
# prompts for AWS/OpenStack credentials
|
18
18
|
# and some other fields that you can
|
19
19
|
# just press Enter for.
|
@@ -21,6 +21,9 @@ bosh-bootstrap deploy --edge-deployer
|
|
21
21
|
# SSH into inception VM
|
22
22
|
bosh-bootstrap ssh
|
23
23
|
|
24
|
+
git config --global user.email "you@example.com"
|
25
|
+
git config --global user.name "Your Name"
|
26
|
+
|
24
27
|
sudo gem install bosh-cloudfoundry
|
25
28
|
export TMPDIR=/var/vcap/store/tmp
|
26
29
|
bosh cf prepare system production
|
data/bosh-cloudfoundry.gemspec
CHANGED
@@ -9,7 +9,12 @@ Gem::Specification.new do |gem|
|
|
9
9
|
gem.authors = ["Dr Nic Williams"]
|
10
10
|
gem.email = ["drnicwilliams@gmail.com"]
|
11
11
|
gem.description = %q{Create and manage your Cloud Foundry deployments}
|
12
|
-
gem.summary =
|
12
|
+
gem.summary = <<-EOS
|
13
|
+
Create and manage your Cloud Foundry deployments on AWS and OpenStack
|
14
|
+
with a simple command line tool (a plugin for BOSH CLI in fact).
|
15
|
+
Start small, grow big, and constantly upgrade your various Cloud Foundry
|
16
|
+
deployments.
|
17
|
+
EOS
|
13
18
|
gem.homepage = "https://github.com/StarkAndWayne/bosh-cloudfoundry"
|
14
19
|
gem.license = "MIT"
|
15
20
|
|
@@ -273,7 +273,8 @@ class Bosh::CloudFoundry::SystemDeploymentManifestRenderer
|
|
273
273
|
"batch"=>{"username"=>"uaa", "password"=>common_password},
|
274
274
|
"port"=>8100,
|
275
275
|
"catalina_opts"=>"-Xmx128m -Xms30m -XX:MaxPermSize=128m",
|
276
|
-
"no_ssl"=>true
|
276
|
+
"no_ssl"=>true,
|
277
|
+
"scim"=>{}},
|
277
278
|
"uaadb"=>
|
278
279
|
{"address"=>core_ip,
|
279
280
|
"port"=>2544,
|
@@ -152,7 +152,7 @@ describe Bosh::Cli::Command::Base do
|
|
152
152
|
if needs_initial_release_uploaded
|
153
153
|
cmd.should_receive(:bosh_releases).exactly(1).times.and_return([])
|
154
154
|
cmd.should_receive(:clone_or_update_cf_release)
|
155
|
-
cmd.should_receive(:merge_gerrit).with(*%w[37/13137/4 84/13084/4
|
155
|
+
cmd.should_receive(:merge_gerrit).with(*%w[37/13137/4 84/13084/4])
|
156
156
|
else
|
157
157
|
cmd.should_receive(:bosh_releases).exactly(1).times.and_return([
|
158
158
|
{"name"=>"appcloud", "versions"=>["124", "126"], "in_use"=>[]},
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bosh-cloudfoundry
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -161,7 +161,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
161
161
|
version: '0'
|
162
162
|
segments:
|
163
163
|
- 0
|
164
|
-
hash: -
|
164
|
+
hash: -3570084276239392817
|
165
165
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
166
166
|
none: false
|
167
167
|
requirements:
|
@@ -170,13 +170,15 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
170
170
|
version: '0'
|
171
171
|
segments:
|
172
172
|
- 0
|
173
|
-
hash: -
|
173
|
+
hash: -3570084276239392817
|
174
174
|
requirements: []
|
175
175
|
rubyforge_project:
|
176
176
|
rubygems_version: 1.8.24
|
177
177
|
signing_key:
|
178
178
|
specification_version: 3
|
179
|
-
summary: Create and manage your Cloud Foundry deployments
|
179
|
+
summary: Create and manage your Cloud Foundry deployments on AWS and OpenStack with
|
180
|
+
a simple command line tool (a plugin for BOSH CLI in fact). Start small, grow big,
|
181
|
+
and constantly upgrade your various Cloud Foundry deployments.
|
180
182
|
test_files:
|
181
183
|
- spec/assets/.gitkeep
|
182
184
|
- spec/assets/cf-release/jobs/cloud_controller/templates/runtimes.yml
|