Skip to content

Commit 1a66abc

Browse files
✨ Upgrade controller-gen from v0.16.4 to v0.16.5 (#4332)
Upgrade controller-gen from v0.16.4 to v0.16.5
1 parent 1aa1dc9 commit 1a66abc

File tree

37 files changed

+52
-52
lines changed

37 files changed

+52
-52
lines changed

docs/book/src/cronjob-tutorial/testdata/project/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ GOLANGCI_LINT = $(LOCALBIN)/golangci-lint
175175

176176
## Tool Versions
177177
KUSTOMIZE_VERSION ?= v5.5.0
178-
CONTROLLER_TOOLS_VERSION ?= v0.16.4
178+
CONTROLLER_TOOLS_VERSION ?= v0.16.5
179179
ENVTEST_VERSION ?= release-0.19
180180
GOLANGCI_LINT_VERSION ?= v1.61.0
181181

docs/book/src/cronjob-tutorial/testdata/project/config/crd/bases/batch.tutorial.kubebuilder.io_cronjobs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.16.4
6+
controller-gen.kubebuilder.io/version: v0.16.5
77
name: cronjobs.batch.tutorial.kubebuilder.io
88
spec:
99
group: batch.tutorial.kubebuilder.io

docs/book/src/cronjob-tutorial/testdata/project/dist/install.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ apiVersion: apiextensions.k8s.io/v1
1111
kind: CustomResourceDefinition
1212
metadata:
1313
annotations:
14-
controller-gen.kubebuilder.io/version: v0.16.4
14+
controller-gen.kubebuilder.io/version: v0.16.5
1515
name: cronjobs.batch.tutorial.kubebuilder.io
1616
spec:
1717
group: batch.tutorial.kubebuilder.io

docs/book/src/getting-started/testdata/project/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ GOLANGCI_LINT = $(LOCALBIN)/golangci-lint
171171

172172
## Tool Versions
173173
KUSTOMIZE_VERSION ?= v5.5.0
174-
CONTROLLER_TOOLS_VERSION ?= v0.16.4
174+
CONTROLLER_TOOLS_VERSION ?= v0.16.5
175175
ENVTEST_VERSION ?= release-0.19
176176
GOLANGCI_LINT_VERSION ?= v1.61.0
177177

docs/book/src/getting-started/testdata/project/config/crd/bases/cache.example.com_memcacheds.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.16.4
6+
controller-gen.kubebuilder.io/version: v0.16.5
77
name: memcacheds.cache.example.com
88
spec:
99
group: cache.example.com

docs/book/src/getting-started/testdata/project/dist/install.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ apiVersion: apiextensions.k8s.io/v1
1111
kind: CustomResourceDefinition
1212
metadata:
1313
annotations:
14-
controller-gen.kubebuilder.io/version: v0.16.4
14+
controller-gen.kubebuilder.io/version: v0.16.5
1515
name: memcacheds.cache.example.com
1616
spec:
1717
group: cache.example.com

docs/book/src/multiversion-tutorial/testdata/project/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ GOLANGCI_LINT = $(LOCALBIN)/golangci-lint
175175

176176
## Tool Versions
177177
KUSTOMIZE_VERSION ?= v5.5.0
178-
CONTROLLER_TOOLS_VERSION ?= v0.16.4
178+
CONTROLLER_TOOLS_VERSION ?= v0.16.5
179179
ENVTEST_VERSION ?= release-0.19
180180
GOLANGCI_LINT_VERSION ?= v1.61.0
181181

docs/book/src/multiversion-tutorial/testdata/project/config/crd/bases/batch.tutorial.kubebuilder.io_cronjobs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.16.4
6+
controller-gen.kubebuilder.io/version: v0.16.5
77
name: cronjobs.batch.tutorial.kubebuilder.io
88
spec:
99
group: batch.tutorial.kubebuilder.io

docs/book/src/multiversion-tutorial/testdata/project/dist/install.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ kind: CustomResourceDefinition
1212
metadata:
1313
annotations:
1414
cert-manager.io/inject-ca-from: project-system/project-serving-cert
15-
controller-gen.kubebuilder.io/version: v0.16.4
15+
controller-gen.kubebuilder.io/version: v0.16.5
1616
name: cronjobs.batch.tutorial.kubebuilder.io
1717
spec:
1818
conversion:

pkg/plugins/golang/v4/scaffolds/init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const (
3939
// ControllerRuntimeVersion is the kubernetes-sigs/controller-runtime version to be used in the project
4040
ControllerRuntimeVersion = "v0.19.1"
4141
// ControllerToolsVersion is the kubernetes-sigs/controller-tools version to be used in the project
42-
ControllerToolsVersion = "v0.16.4"
42+
ControllerToolsVersion = "v0.16.5"
4343
// EnvtestK8SVersion is the k8s version used to do the scaffold
4444
EnvtestK8SVersion = "1.31.0"
4545

0 commit comments

Comments
 (0)