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', ], ]