diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0b1cbe5a8..4c5251b875 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,8 +31,8 @@ jobs: kubernetes: # Only v1.18 is currently enabled because of the flakiness in the tests, specifically API calls failing with "etcdserver: request timed out" #- v1.17.17 - - v1.18.15 - #- v1.19.7 + #- v1.18.15 + - v1.19.7 #- v1.20.2 max-parallel: 1 runs-on: ${{ matrix.os }} @@ -74,8 +74,8 @@ jobs: kubernetes: # Only v1.18 is currently enabled because of the flakiness in the tests, specifically API calls failing with "etcdserver: request timed out" #- v1.17.17 - - v1.18.15 - #- v1.19.7 + #- v1.18.15 + - v1.19.7 #- v1.20.2 max-parallel: 2 runs-on: ${{ matrix.os }} diff --git a/README.md b/README.md index 97b2997362..95632fcc88 100644 --- a/README.md +++ b/README.md @@ -23,10 +23,10 @@ as [Kaniko](https://github.com/GoogleContainerTools/kaniko), ## Dependencies -| Dependency | Supported versions | -| ----------------------------------------- | -------------------------------------- | -| [Kubernetes](https://kubernetes.io/) | v1.15.\*, v1.16.\*, v1.17.\*, v1.18.\* | -| [Tekton](https://tekton.dev) | v0.21.0 | +| Dependency | Supported versions | +| -------------------------------------| ---------------------------- | +| [Kubernetes](https://kubernetes.io/) | v1.17.\*, v1.18.\*, v1.19.\* | +| [Tekton](https://tekton.dev) | v0.21.0 | ## Build Strategies diff --git a/hack/install-kind.sh b/hack/install-kind.sh index c1e34c42c1..3c74621208 100755 --- a/hack/install-kind.sh +++ b/hack/install-kind.sh @@ -25,7 +25,7 @@ kind --version KIND_CLUSTER_NAME="${KIND_CLUSTER_NAME:-kind}" # kind cluster version -KIND_CLUSTER_VERSION="${KIND_CLUSTER_VERSION:-v1.18.2}" +KIND_CLUSTER_VERSION="${KIND_CLUSTER_VERSION:-v1.19.7}" echo "# Creating a new Kubernetes cluster..." kind create cluster --quiet --name="${KIND_CLUSTER_NAME}" --image="kindest/node:${KIND_CLUSTER_VERSION}" --wait=120s