From 8b031caf7ab2bb97ea75781a34ffc4f344aebd37 Mon Sep 17 00:00:00 2001 From: Nick Santos Date: Tue, 23 May 2023 16:26:41 -0400 Subject: [PATCH] circleci: update to kind 0.19 (#292) Signed-off-by: Nick Santos --- .circleci/Dockerfile | 2 +- .circleci/config.yml | 2 +- hack/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/Dockerfile b/.circleci/Dockerfile index 4a1e301..31c36e5 100644 --- a/.circleci/Dockerfile +++ b/.circleci/Dockerfile @@ -36,7 +36,7 @@ RUN apt install -y apt-transport-https gnupg \ && apt update && apt install -y kubectl # install Kind -ENV KIND_VERSION=v0.18.0 +ENV KIND_VERSION=v0.19.0 RUN set -exu \ && curl -fLo ./kind-linux-amd64 "https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION}/kind-linux-amd64" \ && chmod +x ./kind-linux-amd64 \ diff --git a/.circleci/config.yml b/.circleci/config.yml index 4c04534..cbebfa1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,7 +17,7 @@ jobs: e2e-remote-docker: docker: - - image: docker/tilt-ctlptl-ci@sha256:0023e7d1d21ba5f8324314ce0af3de851a1e0371d8bf97ac8c98839cb3ff2a48 + - image: docker/tilt-ctlptl-ci@sha256:683561b35efdeeb25dac399e28eb5e7c52b7e593b8865a9c9e7e26dd11e4253d steps: - checkout - setup_remote_docker diff --git a/hack/Dockerfile b/hack/Dockerfile index 2526cdc..c01f763 100644 --- a/hack/Dockerfile +++ b/hack/Dockerfile @@ -37,7 +37,7 @@ RUN apt install -y apt-transport-https gnupg \ && apt update && apt install -y kubectl # Install Kind -ENV KIND_VERSION=v0.18.0 +ENV KIND_VERSION=v0.19.0 ARG TARGETARCH RUN set -exu \ && KIND_URL="https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION}/kind-linux-$TARGETARCH" \