Update kind image to 1.18.2 (#7228)

* Update kind image to 1.18.2

* Update prow/lib.sh

Co-authored-by: Eric Van Norman <ericvn@us.ibm.com>
This commit is contained in:
John Howard 2020-05-05 18:48:11 -07:00 committed by GitHub
parent 9397d21b55
commit e04912dacf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -60,10 +60,10 @@ function cleanup_kind_cluster() {
}
function setup_kind_cluster() {
IMAGE="${1:-kindest/node:v1.17.0}"
IMAGE="${1:-kindest/node:v1.18.2}"
NAME="${2:-istio-testing}"
CONFIG="${3:-}"
# Delete any previous e2e KinD cluster
# Delete previous e2e KinD cluster
echo "Deleting previous KinD cluster with name=${NAME}"
if ! (kind delete cluster --name="${NAME}" -v9) > /dev/null; then
echo "No existing kind cluster with name ${NAME}. Continue..."