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:
parent
b3c34d897d
commit
0b1eeea8cf
2 changed files with 2 additions and 2 deletions
|
@ -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`).
|
||||
|
||||
|
|
2
Makefile
2
Makefile
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue