hula 0.10.2 → 0.11.0
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 +4 -4
- data/lib/hula/bosh_director.rb +1 -2
- data/lib/hula/bosh_manifest.rb +4 -4
- data/lib/hula/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a7ffd4a162c7b70e2907f17bc60a75a4a1690ba
|
|
4
|
+
data.tar.gz: e88d0d2a80d798c97fdb2356a2ccd201531ef295
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 47fc873a911c73b9c26da06399a0ef6c4e8cf44d1699d5e82e8444d9fbe5f1aff4d19319efb517cea90f703835649c516a31bee05ff1be9a5ffd78656c28fff6
|
|
7
|
+
data.tar.gz: 76b6b8c2eef01c27b6c4c1e1ff97dc65865a3b07fc54a25be5cf625cd1df15e2521fc7fb3aa44139405403a175919053f956a5c0f5e33ea851a93a04df3f57c6
|
data/lib/hula/bosh_director.rb
CHANGED
|
@@ -242,8 +242,7 @@ module Hula
|
|
|
242
242
|
end
|
|
243
243
|
|
|
244
244
|
def run_bosh(cmd)
|
|
245
|
-
|
|
246
|
-
command = "#{bosh_cli} -v -n --config '#{bosh_config_path}' #{cmd}"
|
|
245
|
+
command = "bosh -v -n --config '#{bosh_config_path}' #{cmd}"
|
|
247
246
|
logger.info(command)
|
|
248
247
|
|
|
249
248
|
command_runner.run(command)
|
data/lib/hula/bosh_manifest.rb
CHANGED
|
@@ -82,6 +82,10 @@ module Hula
|
|
|
82
82
|
manifest_hash.fetch('resource_pools')
|
|
83
83
|
end
|
|
84
84
|
|
|
85
|
+
def properties
|
|
86
|
+
manifest_hash.fetch('properties')
|
|
87
|
+
end
|
|
88
|
+
|
|
85
89
|
private
|
|
86
90
|
|
|
87
91
|
attr_reader :manifest_hash
|
|
@@ -93,10 +97,6 @@ module Hula
|
|
|
93
97
|
File.write(path, manifest_hash.to_yaml)
|
|
94
98
|
end
|
|
95
99
|
|
|
96
|
-
def properties
|
|
97
|
-
manifest_hash.fetch('properties')
|
|
98
|
-
end
|
|
99
|
-
|
|
100
100
|
def property_components(property_name)
|
|
101
101
|
property_name.split('.')
|
|
102
102
|
end
|
data/lib/hula/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hula
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Will Pragnell
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-11-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -228,7 +228,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
228
228
|
version: '0'
|
|
229
229
|
requirements: []
|
|
230
230
|
rubyforge_project:
|
|
231
|
-
rubygems_version: 2.
|
|
231
|
+
rubygems_version: 2.6.12
|
|
232
232
|
signing_key:
|
|
233
233
|
specification_version: 4
|
|
234
234
|
summary: A tasty wrapper around cf, and more...
|