Skip to content

Commit 1bd8bbe

Browse files
committed
upgrade_test_cluster: Download custom PE archive before calling peadm
1 parent 2ee2264 commit 1bd8bbe

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

spec/acceptance/peadm_spec/plans/upgrade_test_cluster.pp

+20-3
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,10 @@
1616
$common_params = {
1717
download_mode => $download_mode,
1818
version => $version,
19-
pe_installer_source => $pe_installer_source,
2019
permit_unsafe_versions => $permit_unsafe_versions,
2120
}
2221

23-
$arch_params =
24-
case $architecture {
22+
$arch_params = case $architecture {
2523
'standard': {{
2624
primary_host => $t.filter |$n| { $n.vars['role'] == 'primary' },
2725
} }
@@ -53,6 +51,25 @@
5351
default: { fail('Invalid architecture!') }
5452
}
5553

54+
if $pe_installer_source {
55+
$platform = run_task('peadm::precheck', $arch_params['primary_host']).first['platform']
56+
$pe_tarball_name = "puppet-enterprise-${version}-${platform}.tar.gz"
57+
$upload_tarball_path = "/tmp/${pe_tarball_name}"
58+
59+
if $download_mode == 'bolthost' {
60+
run_plan('peadm::util::retrieve_and_upload', $arch_params['primary_host'],
61+
source => $pe_installer_source,
62+
local_path => "/tmp/${pe_tarball_name}",
63+
upload_path => $upload_tarball_path,
64+
)
65+
} else {
66+
run_task('peadm::download', $arch_params['primary_host'],
67+
source => $pe_installer_source,
68+
path => $upload_tarball_path,
69+
)
70+
}
71+
}
72+
5673
$params = $arch_params + $common_params
5774
run_plan('peadm::upgrade', $params)
5875
}

0 commit comments

Comments
 (0)