motherbrain 1.4.0 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/Gemfile +1 -1
- data/lib/mb/config.rb +6 -6
- data/lib/mb/version.rb +1 -1
- data/motherbrain.gemspec +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e8f93e935d06b27c90b68b50da658dbcf87d1b8e
|
4
|
+
data.tar.gz: 62004688b0ff187c8674fe5f8e879106e3759a7d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2bcb09bc8df684341fbcde113b66836254259e84b696f1fd24d91540eae1fd05be5bc40a987dc78c515761bbe4f80cbd493082d9623a615b675956ff9b8a566d
|
7
|
+
data.tar.gz: 4aa8b7620464a047b21b4375e980a933d634a485a0f6a1752e0892d5c809a6f818b812d0d00293c8de78371ee91b81e7bb9d5ea2b4058fe0577b7e39277b31c5
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,16 @@
|
|
1
|
+
# 1.5.0
|
2
|
+
|
3
|
+
* [#719](https://github.com/RiotGames/motherbrain/pull/719) fix gemspec and references for buff-config / buff-extensions
|
4
|
+
|
5
|
+
# 1.4.0
|
6
|
+
|
7
|
+
* [#717](https://github.com/RiotGames/motherbrain/pull/717) Download Berksfile.lock if it's available when pulling remote plugins
|
8
|
+
* [#716](https://github.com/RiotGames/motherbrain/pull/716) Fix #http_status_code on MB::APIError and remove extraneous special case
|
9
|
+
* [#715](https://github.com/RiotGames/motherbrain/pull/715) Add a /stop endpoint to the REST API
|
10
|
+
* [#714](https://github.com/RiotGames/motherbrain/pull/714) Add a /pause endpoint to the REST API
|
11
|
+
* [#713](https://github.com/RiotGames/motherbrain/pull/713) Print out a friendly error message if RestGateway fails to bind to the port specified
|
12
|
+
* [#712](https://github.com/RiotGames/motherbrain/pull/712) Fix some bad nil.to_i logic
|
13
|
+
|
1
14
|
# 1.3.0
|
2
15
|
|
3
16
|
* [#711](https://github.com/RiotGames/motherbrain/pull/711) Implement a new command for upgrading a node or environment's Omnibus Chef installation
|
data/Gemfile
CHANGED
data/lib/mb/config.rb
CHANGED
@@ -99,7 +99,7 @@ module MotherBrain
|
|
99
99
|
|
100
100
|
attribute 'ssh.sudo',
|
101
101
|
default: true,
|
102
|
-
type: Boolean
|
102
|
+
type: Buff::Boolean
|
103
103
|
|
104
104
|
attribute 'ssh.timeout',
|
105
105
|
default: 10.0,
|
@@ -121,7 +121,7 @@ module MotherBrain
|
|
121
121
|
|
122
122
|
attribute 'ssl.verify',
|
123
123
|
default: true,
|
124
|
-
type: Boolean
|
124
|
+
type: Buff::Boolean
|
125
125
|
|
126
126
|
attribute 'ridley.connector_pool_size',
|
127
127
|
default: 25,
|
@@ -165,7 +165,7 @@ module MotherBrain
|
|
165
165
|
|
166
166
|
attribute 'server.daemonize',
|
167
167
|
default: false,
|
168
|
-
type: Boolean
|
168
|
+
type: Buff::Boolean
|
169
169
|
|
170
170
|
attribute 'server.pid',
|
171
171
|
default: "/var/run/motherbrain/mb.pid",
|
@@ -173,7 +173,7 @@ module MotherBrain
|
|
173
173
|
|
174
174
|
attribute 'rest_gateway.enable',
|
175
175
|
default: false,
|
176
|
-
type: Boolean
|
176
|
+
type: Buff::Boolean
|
177
177
|
|
178
178
|
attribute 'rest_gateway.host',
|
179
179
|
default: RestGateway::DEFAULT_OPTIONS[:host],
|
@@ -187,7 +187,7 @@ module MotherBrain
|
|
187
187
|
# from cookbooks present on the remote Chef server that contain plugins
|
188
188
|
attribute 'plugin_manager.eager_loading',
|
189
189
|
default: false,
|
190
|
-
type: Boolean
|
190
|
+
type: Buff::Boolean
|
191
191
|
|
192
192
|
# How long the plugin manager will wait before polling the Chef Server to eagerly
|
193
193
|
# load any new plugins
|
@@ -198,7 +198,7 @@ module MotherBrain
|
|
198
198
|
# Allows the plugin manager load it's plugins asynchronously in the background during startup
|
199
199
|
attribute 'plugin_manager.async_loading',
|
200
200
|
default: false,
|
201
|
-
type: Boolean
|
201
|
+
type: Buff::Boolean
|
202
202
|
|
203
203
|
attribute 'ef.api_url',
|
204
204
|
type: String
|
data/lib/mb/version.rb
CHANGED
data/motherbrain.gemspec
CHANGED
@@ -50,8 +50,8 @@ Gem::Specification.new do |s|
|
|
50
50
|
s.add_dependency 'multi_json'
|
51
51
|
s.add_dependency 'fog', '~> 1.10.0'
|
52
52
|
s.add_dependency 'json', '>= 1.8.0'
|
53
|
-
s.add_dependency 'buff-config', '~> 0
|
54
|
-
s.add_dependency 'buff-extensions', '~> 0
|
53
|
+
s.add_dependency 'buff-config', '~> 1.0'
|
54
|
+
s.add_dependency 'buff-extensions', '~> 1.0'
|
55
55
|
s.add_dependency 'buff-platform', '~> 0.1'
|
56
56
|
s.add_dependency 'buff-ruby_engine', '~> 0.1'
|
57
57
|
s.add_dependency 'grape-swagger', '~> 0.6.0'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motherbrain
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamie Winsor
|
@@ -15,7 +15,7 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date: 2014-
|
18
|
+
date: 2014-06-11 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: celluloid
|
@@ -233,28 +233,28 @@ dependencies:
|
|
233
233
|
requirements:
|
234
234
|
- - ~>
|
235
235
|
- !ruby/object:Gem::Version
|
236
|
-
version: '0
|
236
|
+
version: '1.0'
|
237
237
|
type: :runtime
|
238
238
|
prerelease: false
|
239
239
|
version_requirements: !ruby/object:Gem::Requirement
|
240
240
|
requirements:
|
241
241
|
- - ~>
|
242
242
|
- !ruby/object:Gem::Version
|
243
|
-
version: '0
|
243
|
+
version: '1.0'
|
244
244
|
- !ruby/object:Gem::Dependency
|
245
245
|
name: buff-extensions
|
246
246
|
requirement: !ruby/object:Gem::Requirement
|
247
247
|
requirements:
|
248
248
|
- - ~>
|
249
249
|
- !ruby/object:Gem::Version
|
250
|
-
version: '0
|
250
|
+
version: '1.0'
|
251
251
|
type: :runtime
|
252
252
|
prerelease: false
|
253
253
|
version_requirements: !ruby/object:Gem::Requirement
|
254
254
|
requirements:
|
255
255
|
- - ~>
|
256
256
|
- !ruby/object:Gem::Version
|
257
|
-
version: '0
|
257
|
+
version: '1.0'
|
258
258
|
- !ruby/object:Gem::Dependency
|
259
259
|
name: buff-platform
|
260
260
|
requirement: !ruby/object:Gem::Requirement
|
@@ -624,7 +624,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
624
624
|
version: '0'
|
625
625
|
requirements: []
|
626
626
|
rubyforge_project:
|
627
|
-
rubygems_version: 2.
|
627
|
+
rubygems_version: 2.2.2
|
628
628
|
signing_key:
|
629
629
|
specification_version: 4
|
630
630
|
summary: An orchestrator for Chef
|