Skip to content

Commit 0191bbf

Browse files
committed
Upgrade to controller-gen 0.12.0
1 parent ed34c09 commit 0191bbf

8 files changed

+4
-11
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ undeploy-hub: undeploy-kmm-hub undeploy-cert-manager ## Undeploy controller from
220220
CONTROLLER_GEN = $(shell pwd)/bin/controller-gen
221221
.PHONY: controller-gen
222222
controller-gen: ## Download controller-gen locally if necessary.
223-
$(call go-get-tool,$(CONTROLLER_GEN),sigs.k8s.io/controller-tools/cmd/controller-gen@v0.10.0)
223+
$(call go-get-tool,$(CONTROLLER_GEN),sigs.k8s.io/controller-tools/cmd/controller-gen@v0.12.0)
224224

225225
GOLANGCI_LINT = $(shell pwd)/bin/golangci-lint
226226
.PHONY: golangci-lint

config/crd-hub/bases/hub.kmm.sigs.x-k8s.io_managedclustermodules.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.10.0
7-
creationTimestamp: null
6+
controller-gen.kubebuilder.io/version: v0.12.0
87
name: managedclustermodules.hub.kmm.sigs.x-k8s.io
98
spec:
109
group: hub.kmm.sigs.x-k8s.io

config/crd/bases/kmm.sigs.x-k8s.io_modules.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.10.0
7-
creationTimestamp: null
6+
controller-gen.kubebuilder.io/version: v0.12.0
87
name: modules.kmm.sigs.x-k8s.io
98
spec:
109
group: kmm.sigs.x-k8s.io

config/crd/bases/kmm.sigs.x-k8s.io_preflightvalidations.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.10.0
7-
creationTimestamp: null
6+
controller-gen.kubebuilder.io/version: v0.12.0
87
name: preflightvalidations.kmm.sigs.x-k8s.io
98
spec:
109
group: kmm.sigs.x-k8s.io

config/rbac-hub/role.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
5-
creationTimestamp: null
65
name: manager-role
76
rules:
87
- apiGroups:

config/rbac/role.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
5-
creationTimestamp: null
65
name: manager-role
76
rules:
87
- apiGroups:

config/webhook-hub/manifests.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
apiVersion: admissionregistration.k8s.io/v1
33
kind: ValidatingWebhookConfiguration
44
metadata:
5-
creationTimestamp: null
65
name: validating-webhook-configuration
76
webhooks:
87
- admissionReviewVersions:

config/webhook/manifests.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
apiVersion: admissionregistration.k8s.io/v1
33
kind: ValidatingWebhookConfiguration
44
metadata:
5-
creationTimestamp: null
65
name: validating-webhook-configuration
76
webhooks:
87
- admissionReviewVersions:

0 commit comments

Comments
 (0)