beaker-pe 1.14.0 → 1.15.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 +8 -8
- data/HISTORY.md +21 -2
- data/lib/beaker-pe/install/pe_utils.rb +2 -2
- data/lib/beaker-pe/version.rb +1 -1
- data/spec/beaker-pe/install/pe_utils_spec.rb +5 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZDU3YmFiNDg4M2FjMzYwNzRmNzI1NDdjZTcyY2NjNmJlNWQyOTllMw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
Y2I2MDdlZDY2YTJmNWFiY2VlODFkZDJiMDhjMzdlYTJkZjU0OTAyMg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MWUyNGExOTQ3NmVjMGE2NmEwZmYwOGYzZjUxZTU0NTQwOTcwZTUyNzgxODU5
|
|
10
|
+
ZmFmOTY0ODczMzFlNjlmZWUxMzRlNDFmMDUyZGIwOGY0ZDE3OWUwMWRkYzc4
|
|
11
|
+
MzhjMTUyYmM5NjdjZjEyNTFiMTk5NTVmNzkwZTJjZDcyNTA4OGE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MGViNDFmZDI4OGExNTVkZmU3ZDlhMDA2ZGZlOThmZWFhMzkxODE2YmNhYjBm
|
|
14
|
+
MmJkZTZjNmQ1NGQxMzAzM2Q0MWM2YzYzZjJiNWFlMmJmZTMyMmVkMzA3OGY1
|
|
15
|
+
MzE3ZWQzMGE4ODdjNmE3NWU4MDE5MDE4OWVhN2VkZWQzNmFlZjc=
|
data/HISTORY.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# worker - History
|
|
2
2
|
## Tags
|
|
3
|
-
* [LATEST -
|
|
3
|
+
* [LATEST - 11 May, 2017 (6cdb9055)](#LATEST)
|
|
4
|
+
* [1.14.0 - 10 May, 2017 (874a7998)](#1.14.0)
|
|
4
5
|
* [1.13.0 - 6 Apr, 2017 (a3c5d641)](#1.13.0)
|
|
5
6
|
* [1.12.1 - 29 Mar, 2017 (fe8bbc82)](#1.12.1)
|
|
6
7
|
* [1.12.0 - 23 Mar, 2017 (0784adc6)](#1.12.0)
|
|
@@ -37,7 +38,25 @@
|
|
|
37
38
|
* [0.1.0 - 29 Feb, 2016 (4fc88d8c)](#0.1.0)
|
|
38
39
|
|
|
39
40
|
## Details
|
|
40
|
-
### <a name = "LATEST">LATEST -
|
|
41
|
+
### <a name = "LATEST">LATEST - 11 May, 2017 (6cdb9055)
|
|
42
|
+
|
|
43
|
+
* (GEM) update beaker-pe version to 1.15.0 (6cdb9055)
|
|
44
|
+
|
|
45
|
+
* (PE-20405) On frictionless installs ensure all hosts run prepare_hosts (f9cb3ca8)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
```
|
|
49
|
+
(PE-20405) On frictionless installs ensure all hosts run prepare_hosts
|
|
50
|
+
|
|
51
|
+
Previously when there was a frictionless install prepare_hosts was
|
|
52
|
+
only set on the master. This meant that agents were skipped and as
|
|
53
|
+
a result agents did not have a working_dir set.
|
|
54
|
+
This caused unix machines to install on just the root directory and
|
|
55
|
+
caused failures on windows.
|
|
56
|
+
```
|
|
57
|
+
### <a name = "1.14.0">1.14.0 - 10 May, 2017 (874a7998)
|
|
58
|
+
|
|
59
|
+
* (HISTORY) update beaker-pe history for gem release 1.14.0 (874a7998)
|
|
41
60
|
|
|
42
61
|
* (GEM) update beaker-pe version to 1.14.0 (588c5ca5)
|
|
43
62
|
|
|
@@ -450,8 +450,8 @@ module Beaker
|
|
|
450
450
|
all_hosts = [master, *agents]
|
|
451
451
|
configure_type_defaults_on(all_hosts)
|
|
452
452
|
|
|
453
|
-
# Set PE distribution on the
|
|
454
|
-
prepare_hosts(
|
|
453
|
+
# Set PE distribution on the agents, creates working directories
|
|
454
|
+
prepare_hosts(all_hosts, opts)
|
|
455
455
|
fetch_pe([master], opts)
|
|
456
456
|
prepare_host_installer_options(master)
|
|
457
457
|
generate_installer_conf_file_for(master, [master], opts)
|
data/lib/beaker-pe/version.rb
CHANGED
|
@@ -1357,6 +1357,11 @@ describe ClassMixedWithDSLInstallUtils do
|
|
|
1357
1357
|
|
|
1358
1358
|
subject.simple_monolithic_install(monolithic, agents)
|
|
1359
1359
|
end
|
|
1360
|
+
|
|
1361
|
+
it "calls prepare_hosts on all hosts instead of just master" do
|
|
1362
|
+
expect(subject).to receive(:prepare_hosts).with([monolithic] + [el_agent, el_agent, el_agent], {})
|
|
1363
|
+
subject.simple_monolithic_install(monolithic, [el_agent, el_agent, el_agent])
|
|
1364
|
+
end
|
|
1360
1365
|
end
|
|
1361
1366
|
|
|
1362
1367
|
describe 'do_higgs_install' do
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker-pe
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.15.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppetlabs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-05-
|
|
11
|
+
date: 2017-05-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|