Skip to content
Snippets Groups Projects
Commit 63581bab authored by OZGCloud's avatar OZGCloud
Browse files

e2e tests, rollout nacheinander

parent 2c09ace0
No related branches found
No related tags found
No related merge requests found
...@@ -161,7 +161,7 @@ pipeline { ...@@ -161,7 +161,7 @@ pipeline {
} }
} }
stage('Rollout E2E Namespaces') { stage('Rollout E2E Main') {
when { when {
expression { !SKIP_RUN } expression { !SKIP_RUN }
} }
...@@ -173,7 +173,6 @@ pipeline { ...@@ -173,7 +173,6 @@ pipeline {
deleteKopStack([env.EA_BEZEICHNER, env.MAIN_BEZEICHNER]) deleteKopStack([env.EA_BEZEICHNER, env.MAIN_BEZEICHNER])
generateEaNamespaceYaml()
generateMainNamespaceYaml() generateMainNamespaceYaml()
pushGitopsRepo() pushGitopsRepo()
...@@ -190,6 +189,34 @@ pipeline { ...@@ -190,6 +189,34 @@ pipeline {
} }
} }
stage('Rollout E2E EA') {
when {
expression { !SKIP_RUN }
}
steps {
script {
FAILED_STAGE = env.STAGE_NAME
checkoutGitopsE2eBranch()
deleteKopStack([env.EA_BEZEICHNER, env.MAIN_BEZEICHNER])
generateEaNamespaceYaml()
pushGitopsRepo()
waitForKopStackRollout([env.EA_BEZEICHNER, env.MAIN_BEZEICHNER])
}
}
post {
failure {
script {
deleteKopStack([env.EA_BEZEICHNER, env.MAIN_BEZEICHNER])
}
}
}
}
stage('Run E2E-Tests') { stage('Run E2E-Tests') {
when { when {
expression { !SKIP_RUN } expression { !SKIP_RUN }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment