From c02b1d559c636863cb11e2613ac5afa63245436d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serta=C3=A7=20=C3=96zercan?= <852750+sozercan@users.noreply.github.com> Date: Mon, 1 May 2023 09:21:46 -0700 Subject: [PATCH] chore: add k8s 1.27 to tests (#2692) Co-authored-by: Nilekh Chaudhari <1626598+nilekhc@users.noreply.github.com> --- .github/workflows/workflow.yaml | 2 +- Makefile | 4 ++-- Tiltfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index aa4e4c15035..08f901fb399 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -116,7 +116,7 @@ jobs: timeout-minutes: 15 strategy: matrix: - KUBERNETES_VERSION: ["1.24.7", "1.25.3", "1.26.0"] + KUBERNETES_VERSION: ["1.24.12", "1.25.8", "1.26.3", "1.27.1"] steps: - name: Check out code into the Go module directory uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c diff --git a/Makefile b/Makefile index 8c77b3258b7..b7e166a7a39 100644 --- a/Makefile +++ b/Makefile @@ -14,8 +14,8 @@ VERSION := v3.13.0-beta.0 KIND_VERSION ?= 0.17.0 # note: k8s version pinned since KIND image availability lags k8s releases -KUBERNETES_VERSION ?= 1.26.0 -CRD_KUBECTL_VERSION ?= 1.26.3 +KUBERNETES_VERSION ?= 1.27.1 +CRD_KUBECTL_VERSION ?= 1.27.1 KUSTOMIZE_VERSION ?= 3.8.9 BATS_VERSION ?= 1.8.2 ORAS_VERSION ?= 0.16.0 diff --git a/Tiltfile b/Tiltfile index 2ea9e2af422..be94dfe20e0 100644 --- a/Tiltfile +++ b/Tiltfile @@ -74,7 +74,7 @@ def build_crds(): context=".staging/crds/", target="build", only="crds", - build_args={"KUBE_VERSION": "1.26.0"}, + build_args={"KUBE_VERSION": "1.27.1"}, live_update=[ sync(".staging/crds/", "/crds"), ],