Skip to content

Commit

Permalink
Fix upgrade channel (#969)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebattat authored Feb 4, 2025
1 parent bcb8623 commit 0dd3621
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,10 @@ END
withCredentials([string(credentialsId: 'perfci_provision_user', variable: 'PROVISION_USER')]) {
withCredentials([file(credentialsId: 'perfci_provision_private_key_file', variable: 'PROVISION_PRIVATE_KEY_FILE')]) {
sh """
sudo podman run --rm -e UPGRADE_OCP_VERSION="${UPGRADE_OCP_VERSION}" \
sudo podman run --rm \
-e UPGRADE_OCP_VERSION="${UPGRADE_OCP_VERSION}" \
-e UPGRADE_STEP="${upgrade_step}" \
-e UPGRADE_CHANNEL='${UPGRADE_CHANNEL}' \
-e LSO_VERSION="${LSO_VERSION}" \
-e ODF_VERSION="${ODF_VERSION}" \
-e CNV_VERSION="${CNV_VERSION}" \
Expand Down Expand Up @@ -233,7 +235,7 @@ END
SCALE = ""
}

// Create a stage for each workload
// Windows11 VMs workload Verifications
stage(workload_name) {
// boolean value w/o ''
sh """
Expand All @@ -242,7 +244,6 @@ END
-e ODF_VERSION="${ODF_VERSION}" \
-e CNV_VERSION="${CNV_VERSION}" \
-e WAIT_FOR_UPGRADE_VERSION='${WAIT_FOR_UPGRADE_VERSION}' \
-e UPGRADE_CHANNEL='${UPGRADE_CHANNEL}' \
-e KUBEADMIN_PASSWORD='${KUBEADMIN_PASSWORD}' \
-e PIN_NODE_BENCHMARK_OPERATOR='${PIN_NODE_BENCHMARK_OPERATOR}' \
-e PIN_NODE1='${PIN_NODE1}' \
Expand Down

0 comments on commit 0dd3621

Please sign in to comment.