Skip to content

Commit

Permalink
Remove GKE 1.12 from the e2e tests, replace it with 1.15 (#2440)
Browse files Browse the repository at this point in the history
  • Loading branch information
barkbay authored Jan 17, 2020
1 parent 086957c commit b43d538
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .ci/jobs/e2e-custom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
- string:
name: VERSION
default: 1.13
description: "Kubernetes version, default is 1.12"
description: "Kubernetes version, default is 1.13"
- bool:
name: SEND_NOTIFICATIONS
default: true
Expand Down
2 changes: 1 addition & 1 deletion build/ci/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ EOF
cat >deployer-config.yml <<EOF
id: gke-ci
overrides:
kubernetesVersion: "1.12"
kubernetesVersion: "1.13"
clusterName: $BUILD_TAG
vaultInfo:
address: $VAULT_ADDR
Expand Down
14 changes: 7 additions & 7 deletions build/ci/e2e/GKE_k8s_versions.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,36 +28,36 @@ pipeline {
}
stage('Run tests for different k8s versions in GKE') {
parallel {
stage("1.12") {
stage("1.13") {
agent {
label 'linux'
}
steps {
checkout scm
script {
runWith(lib, failedTests, '1.12', "eck-gke12-${BUILD_NUMBER}-e2e")
runWith(lib, failedTests, '1.13', "eck-gke13-${BUILD_NUMBER}-e2e")
}
}
}
stage("1.13") {
stage("1.14") {
agent {
label 'linux'
}
steps {
checkout scm
script {
runWith(lib, failedTests, '1.13', "eck-gke13-${BUILD_NUMBER}-e2e")
runWith(lib, failedTests, '1.14', "eck-gke14-${BUILD_NUMBER}-e2e")
}
}
}
stage("1.14") {
stage("1.15") {
agent {
label 'linux'
}
steps {
checkout scm
script {
runWith(lib, failedTests, '1.14', "eck-gke14-${BUILD_NUMBER}-e2e")
runWith(lib, failedTests, '1.15', "eck-gke15-${BUILD_NUMBER}-e2e")
}
}
}
Expand All @@ -83,7 +83,7 @@ pipeline {
}
cleanup {
script {
clusters = ["eck-gke12-${BUILD_NUMBER}-e2e", "eck-gke13-${BUILD_NUMBER}-e2e", "eck-gke14-${BUILD_NUMBER}-e2e"]
clusters = ["eck-gke13-${BUILD_NUMBER}-e2e", "eck-gke14-${BUILD_NUMBER}-e2e", "eck-gke15-${BUILD_NUMBER}-e2e"]
for (int i = 0; i < clusters.size(); i++) {
build job: 'cloud-on-k8s-e2e-cleanup',
parameters: [string(name: 'GKE_CLUSTER', value: clusters[i])],
Expand Down

0 comments on commit b43d538

Please sign in to comment.