Skip to content

Commit

Permalink
Move k8s upgrade and e2e features tests to private cloud
Browse files Browse the repository at this point in the history
Signed-off-by: Sunnatillo <[email protected]>
  • Loading branch information
Sunnatillo committed Aug 28, 2024
1 parent 6ee9e4e commit c7ef016
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion jenkins/jobs/capm3-e2e-tests.pipeline
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ script {
}
echo "Checkout ${ci_git_url} branch ${ci_git_branch}"

if ("${GINKGO_FOCUS}" == 'integration' || "${GINKGO_FOCUS}" == 'basic') {
if ("${GINKGO_FOCUS}" == 'integration' || "${GINKGO_FOCUS}" == 'basic') {
agent_label = "metal3ci-8c16gb-${IMAGE_OS}"
TIMEOUT=10800 // 3h
} else if ("${GINKGO_FOCUS}" == 'k8s-upgrade') {
agent_label = "metal3ci-8c16gb-${IMAGE_OS}"
TIMEOUT=10800 // 3h
} else if ( "${env.EPHEMERAL_TEST}" == 'true' ) {
Expand Down
4 changes: 3 additions & 1 deletion jenkins/jobs/e2e_features_test.pipeline
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,16 @@ script {
if ("${GINKGO_FOCUS}" == 'pivoting') {
BUILD_TAG = "${env.BUILD_TAG}-pivoting-based"
TIMEOUT = 18000 // 5h for node reuse
agent_label="metal3ci-large-${IMAGE_OS}"
} else if ("${GINKGO_FOCUS}" == 'remediation') {
BUILD_TAG = "${env.BUILD_TAG}-remediation-based"
TIMEOUT = 18000 // 5h for remediation
agent_label="metal3ci-large-${IMAGE_OS}"
} else {
BUILD_TAG = "${env.BUILD_TAG}-other-features"
GINKGO_SKIP = "pivoting remediation" // Allow non pivoting features
agent_label="metal3ci-8c24gb-${IMAGE_OS}"
}
agent_label="metal3ci-large-${IMAGE_OS}"
}

pipeline {
Expand Down

0 comments on commit c7ef016

Please sign in to comment.