Skip to content

Commit 8666576

Browse files
(PE-41013) try different download mode3
1 parent ef9fc2f commit 8666576

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/test-add-compiler-matrix.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ jobs:
8787
architecture=${{ matrix.architecture }} \
8888
console_password=${{ secrets.CONSOLE_PASSWORD }} \
8989
version=${{ matrix.version }}
90+
download_mode=bolthost
9091
- name: Run add_compilers plan
9192
timeout-minutes: 50
9293
run: |

plans/subplans/install.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@
246246
}
247247

248248
$upload_tarball_path = "${uploaddir}/${pe_tarball_name}"
249-
249+
out::message("in sub - download_mode:${download_mode}")
250250
if $download_mode == 'bolthost' {
251251
# Download the PE tarball and send it to the nodes that need it
252252
run_plan('peadm::util::retrieve_and_upload', $pe_installer_targets,

spec/acceptance/peadm_spec/plans/install_test_cluster.pp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
plan peadm_spec::install_test_cluster (
22
String[1] $architecture,
3-
String $download_mode = 'bolthost',
3+
String $download_mode = 'direct',
44
Optional[Boolean] $code_manager_auto_configure = undef,
55
Optional[String[1]] $version = undef,
66
Optional[String[1]] $pe_installer_source = undef,
77
Boolean $permit_unsafe_versions = false,
88
Enum['enable', 'disable'] $fips = 'disable',
99
String $console_password
1010
) {
11+
out::message("download_mode:${download_mode}")
1112
$t = get_targets('*')
1213
wait_until_available($t)
1314

@@ -75,7 +76,7 @@
7576
} }
7677
default: { fail('Invalid architecture!') }
7778
}
78-
79+
out::message("common_params:${common_params}")
7980
$install_result =
8081
run_plan('peadm::install', $arch_params + $common_params)
8182

0 commit comments

Comments
 (0)