bosh-cloudfoundry 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog.md CHANGED
@@ -4,6 +4,10 @@
4
4
 
5
5
  Defaults to patched dev release (since a cf-release final release doesn't work).
6
6
 
7
+ ### v0.4.1
8
+
9
+ Workaround for cf-release HEAD change - providing `properties.uaa.scim` property now.
10
+
7
11
  ## v0.3
8
12
 
9
13
  Additions:
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 --edge-deployer
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
@@ -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 = %q{Create and manage your Cloud Foundry deployments via the BOSH CLI}
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,
@@ -1,5 +1,5 @@
1
1
  module Bosh
2
2
  module Cloudfoundry
3
- VERSION = "0.4.0"
3
+ VERSION = "0.4.1"
4
4
  end
5
5
  end
@@ -178,6 +178,8 @@ properties:
178
178
  port: 8100
179
179
  catalina_opts: -Xmx128m -Xms30m -XX:MaxPermSize=128m
180
180
  no_ssl: true
181
+ scim: {}
182
+
181
183
  uaadb:
182
184
  address: 1.2.3.4
183
185
  port: 2544
@@ -198,6 +198,8 @@ properties:
198
198
  port: 8100
199
199
  catalina_opts: -Xmx128m -Xms30m -XX:MaxPermSize=128m
200
200
  no_ssl: true
201
+ scim: {}
202
+
201
203
  uaadb:
202
204
  address: 1.2.3.4
203
205
  port: 2544
@@ -174,6 +174,8 @@ properties:
174
174
  port: 8100
175
175
  catalina_opts: -Xmx128m -Xms30m -XX:MaxPermSize=128m
176
176
  no_ssl: true
177
+ scim: {}
178
+
177
179
  uaadb:
178
180
  address: 1.2.3.4
179
181
  port: 2544
@@ -157,6 +157,8 @@ properties:
157
157
  port: 8100
158
158
  catalina_opts: -Xmx128m -Xms30m -XX:MaxPermSize=128m
159
159
  no_ssl: true
160
+ scim: {}
161
+
160
162
  uaadb:
161
163
  address: 1.2.3.4
162
164
  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 09/13609/2])
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.0
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: -44016591154602000
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: -44016591154602000
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 via the BOSH CLI
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