kitchen-habitat 0.8.1 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/kitchen-habitat/version.rb +1 -1
- data/lib/kitchen/provisioner/habitat.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a7ed56af416303acdd761c21b1a205b62c8fe3d6d1712a1798dd4e18b7583d4
|
4
|
+
data.tar.gz: 1a8af1c6a8dd062786013157b9b67c2f1c67f2eaece2793fa8bc89dfa96d13bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97c0905d88a0425a2b2ee7209f02369e00433d859ecaebd3cc18e0b9ad180ae4600acfd8ec185f053628410b2b5b81a542f5d48a1110174ec438d207070e545d
|
7
|
+
data.tar.gz: 7f2c990733bc747a6fb9a7306ff07f3be59814e9aa7a8ca22c74f66b6addcc083b4c29ebefcc33a6589fecaf5b0a59439951f4e4c3024bb436cab26b3b225f33
|
@@ -26,6 +26,7 @@ module Kitchen
|
|
26
26
|
# hab-sup manager options
|
27
27
|
default_config :hab_sup_listen_http, nil
|
28
28
|
default_config :hab_sup_listen_gossip, nil
|
29
|
+
default_config :hab_sup_listen_ctl, nil
|
29
30
|
default_config :hab_sup_peer, []
|
30
31
|
default_config :hab_sup_bind, []
|
31
32
|
default_config :hab_sup_group, nil
|
@@ -317,6 +318,7 @@ module Kitchen
|
|
317
318
|
|
318
319
|
def supervisor_options
|
319
320
|
options = ""
|
321
|
+
options += " --listen-ctl #{config[:hab_sup_listen_ctl]}" unless config[:hab_sup_listen_ctl].nil?
|
320
322
|
options += " --listen-gossip #{config[:hab_sup_listen_gossip]}" unless config[:hab_sup_listen_gossip].nil?
|
321
323
|
options += " --config-from #{File.join(config[:root_path], 'config/')}" if config[:override_package_config]
|
322
324
|
options += config[:hab_sup_bind].map { |b| " --bind #{b}" }.join(" ") if config[:hab_sup_bind].any?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kitchen-habitat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Murawski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-07-
|
11
|
+
date: 2018-07-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: test-kitchen
|