From c471c7c660fbe37c8253f05f6e337c9f4101ffdb Mon Sep 17 00:00:00 2001 From: Dominik Hanak Date: Tue, 13 Feb 2024 17:43:42 +0100 Subject: [PATCH] kso-issue-376: Configure the dsl to setup e2e with kind --- .ci/jenkins/Jenkinsfile.deploy | 4 ++-- .ci/jenkins/dsl/jobs.groovy | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.ci/jenkins/Jenkinsfile.deploy b/.ci/jenkins/Jenkinsfile.deploy index 97378f1fa..947de5c53 100644 --- a/.ci/jenkins/Jenkinsfile.deploy +++ b/.ci/jenkins/Jenkinsfile.deploy @@ -190,10 +190,10 @@ pipeline { } } parallel { - stage('Run tests on Minikube') { + stage('Run tests on Kind') { steps { script { - launchE2ETestsJob('minikube') + launchE2ETestsJob('kind') } } } diff --git a/.ci/jenkins/dsl/jobs.groovy b/.ci/jenkins/dsl/jobs.groovy index f19e84926..fa683e21e 100644 --- a/.ci/jenkins/dsl/jobs.groovy +++ b/.ci/jenkins/dsl/jobs.groovy @@ -34,8 +34,8 @@ import org.kie.jenkins.jobdsl.Utils jenkins_path = '.ci/jenkins' clustersConfig = [ - minikube: [ - MINIKUBE_VERSION: '1.30.1', + kind: [ + KIND_VERSION: 'v0.20.0', KUBERNETES_VERSION: '1.26.3', ], ]