kitchen-habitat 0.6.0 → 0.6.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.
- checksums.yaml +4 -4
- data/README.md +9 -2
- data/lib/kitchen/provisioner/habitat.rb +1 -0
- data/lib/kitchen-habitat/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a7186aecdeb7d78328ba237f0f586a5bafcd010
|
|
4
|
+
data.tar.gz: bcfcea1fe6c318ad4b132f2e34d9fe91503e6752
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb291cfc369592c4fe43377f6c9d2a7bd26a454af682c41406281a38020063cccf9b16a2c9e161e60835ecddb054ec6be6bebf4eeb803863d1c13c49f423969e
|
|
7
|
+
data.tar.gz: 848a9b1394ceecf32e6f7a51cc5378d91d57c023030508fcc820a88148190960f71f6d6aac7ca9fe1c53bf942479a420b0cd58acad3a0c68ac9e8150878e99cd
|
data/README.md
CHANGED
|
@@ -45,6 +45,12 @@ You'll need the test-kitchen & kitchen-habitat gems installed in your system, al
|
|
|
45
45
|
* `hab_sup_group`
|
|
46
46
|
* Service group for the supervisor to belong do.
|
|
47
47
|
* Default is `default`
|
|
48
|
+
* `hab_sup_bind`
|
|
49
|
+
* Service group for the supervisor to bind to.
|
|
50
|
+
* Default is `[]`
|
|
51
|
+
* `hab_sup_peer`
|
|
52
|
+
* IP and port (e.g. `192.168.1.86:9010`) of the supervisor of which to connect to join the ring.
|
|
53
|
+
* Default is `[]`
|
|
48
54
|
|
|
49
55
|
### Package Settings
|
|
50
56
|
|
|
@@ -89,7 +95,7 @@ You'll need the test-kitchen & kitchen-habitat gems installed in your system, al
|
|
|
89
95
|
* `package_version` and `package_release` will be ignored
|
|
90
96
|
* Defaults to `false`
|
|
91
97
|
|
|
92
|
-
##
|
|
98
|
+
## Examples
|
|
93
99
|
|
|
94
100
|
```yaml
|
|
95
101
|
driver:
|
|
@@ -97,7 +103,8 @@ driver:
|
|
|
97
103
|
|
|
98
104
|
provisioner:
|
|
99
105
|
name: habitat
|
|
100
|
-
|
|
106
|
+
hab_sup_origin: core
|
|
107
|
+
hab_sup_name: sup
|
|
101
108
|
package_origin: core
|
|
102
109
|
package_name: redis
|
|
103
110
|
|
|
@@ -190,6 +190,7 @@ module Kitchen
|
|
|
190
190
|
end
|
|
191
191
|
|
|
192
192
|
def copy_results_to_sandbox
|
|
193
|
+
return if config[:artifact_name].nil? && !config[:install_latest_artifact]
|
|
193
194
|
results_dir = resolve_results_directory
|
|
194
195
|
return if results_dir.nil?
|
|
195
196
|
FileUtils.mkdir_p(File.join(sandbox_path, "results"))
|
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.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steven Murawski
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-03-
|
|
11
|
+
date: 2017-03-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: test-kitchen
|