1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-14 11:57:48 +00:00

chore: use k8s 1.28 by default (#9052)

Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com>
This commit is contained in:
Mariam Fahmy 2023-11-30 12:20:30 +02:00 committed by GitHub
parent b3c34d897d
commit 0b1eeea8cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -242,7 +242,7 @@ To create a local KinD cluster, run:
make kind-create-cluster
```
You can override the k8s version by setting the `KIND_IMAGE` environment variable (default value is `kindest/node:v1.24.0`).
You can override the k8s version by setting the `KIND_IMAGE` environment variable (default value is `kindest/node:v1.28.0`).
You can also override the KinD cluster name by setting the `KIND_NAME` environment variable (default value is `kind`).

View file

@ -7,7 +7,7 @@
GIT_SHA := $(shell git rev-parse HEAD)
REGISTRY ?= ghcr.io
REPO ?= kyverno
KIND_IMAGE ?= kindest/node:v1.27.3
KIND_IMAGE ?= kindest/node:v1.28.0
KIND_NAME ?= kind
KIND_CONFIG ?= default
GOOS ?= $(shell go env GOOS)