Skip to content

Commit db6b567

Browse files
committed
upgrade_test_cluster: Download custom PE archive before calling peadm
1 parent 84fed4f commit db6b567

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

spec/acceptance/peadm_spec/plans/upgrade_test_cluster.pp

+21-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,26 @@
5351
default: { fail('Invalid architecture!') }
5452
}
5553

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

0 commit comments

Comments
 (0)