Skip to content

Commit 53d8908

Browse files
authored
(ci): bump sigs.k8s.io/controller-tools/cmd/controller-gen to 0.14 (#52)
1 parent 416cd03 commit 53d8908

File tree

2 files changed

+45
-42
lines changed

2 files changed

+45
-42
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ undeploy: ## Undeploy controller from the K8s cluster specified in ~/.kube/confi
104104
CONTROLLER_GEN = $(shell pwd)/bin/controller-gen
105105
.PHONY: controller-gen
106106
controller-gen: ## Download controller-gen locally if necessary.
107-
$(call go-get-tool,$(CONTROLLER_GEN),sigs.k8s.io/controller-tools/cmd/controller-gen@v0.8.0)
107+
$(call go-get-tool,$(CONTROLLER_GEN),sigs.k8s.io/controller-tools/cmd/controller-gen@v0.14.0)
108108

109109
KUSTOMIZE = $(shell pwd)/bin/kustomize
110110
.PHONY: kustomize

config/crd/bases/infrastructure.cluster.x-k8s.io_vclusters.yaml

Lines changed: 44 additions & 41 deletions
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.8.0
7-
creationTimestamp: null
6+
controller-gen.kubebuilder.io/version: v0.14.0
87
name: vclusters.infrastructure.cluster.x-k8s.io
98
spec:
109
group: infrastructure.cluster.x-k8s.io
@@ -21,14 +20,19 @@ spec:
2120
description: VCluster is the Schema for the vclusters API
2221
properties:
2322
apiVersion:
24-
description: 'APIVersion defines the versioned schema of this representation
25-
of an object. Servers should convert recognized schemas to the latest
26-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
23+
description: |-
24+
APIVersion defines the versioned schema of this representation of an object.
25+
Servers should convert recognized schemas to the latest internal value, and
26+
may reject unrecognized values.
27+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
2728
type: string
2829
kind:
29-
description: 'Kind is a string value representing the REST resource this
30-
object represents. Servers may infer this from the endpoint the client
31-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
30+
description: |-
31+
Kind is a string value representing the REST resource this object represents.
32+
Servers may infer this from the endpoint the client submits requests to.
33+
Cannot be updated.
34+
In CamelCase.
35+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
3236
type: string
3337
metadata:
3438
type: object
@@ -51,8 +55,9 @@ spec:
5155
- port
5256
type: object
5357
helmRelease:
54-
description: The helm release configuration for the virtual cluster.
55-
This is optional, but when filled, specified chart will be deployed.
58+
description: |-
59+
The helm release configuration for the virtual cluster. This is optional, but
60+
when filled, specified chart will be deployed.
5661
properties:
5762
chart:
5863
description: infos about what chart to deploy
@@ -72,9 +77,10 @@ spec:
7277
type: string
7378
type: object
7479
kubernetesVersion:
75-
description: Kubernetes version that should be used in this vcluster
76-
instance, e.g. "1.23". Versions out of the supported range will
77-
be ignored, and earliest/latest supported version will be used instead.
80+
description: |-
81+
Kubernetes version that should be used in this vcluster instance, e.g. "1.23".
82+
Versions out of the supported range will be ignored, and earliest/latest supported
83+
version will be used instead.
7884
type: string
7985
type: object
8086
status:
@@ -88,36 +94,37 @@ spec:
8894
operational state.
8995
properties:
9096
lastTransitionTime:
91-
description: Last time the condition transitioned from one status
92-
to another. This should be when the underlying condition changed.
93-
If that is not known, then using the time when the API field
94-
changed is acceptable.
97+
description: |-
98+
Last time the condition transitioned from one status to another.
99+
This should be when the underlying condition changed. If that is not known, then using the time when
100+
the API field changed is acceptable.
95101
format: date-time
96102
type: string
97103
message:
98-
description: A human readable message indicating details about
99-
the transition. This field may be empty.
104+
description: |-
105+
A human readable message indicating details about the transition.
106+
This field may be empty.
100107
type: string
101108
reason:
102-
description: The reason for the condition's last transition
103-
in CamelCase. The specific API may choose whether this field
104-
is considered a guaranteed API. This field may not be empty.
109+
description: |-
110+
The reason for the condition's last transition in CamelCase.
111+
The specific API may choose whether this field is considered a guaranteed API.
112+
This field may not be empty.
105113
type: string
106114
severity:
107-
description: Severity provides an explicit classification of
108-
Reason code, so the users or machines can immediately understand
109-
the current situation and act accordingly. The Severity field
110-
MUST be set only when Status=False.
115+
description: |-
116+
Severity provides an explicit classification of Reason code, so the users or machines can immediately
117+
understand the current situation and act accordingly.
118+
The Severity field MUST be set only when Status=False.
111119
type: string
112120
status:
113121
description: Status of the condition, one of True, False, Unknown.
114122
type: string
115123
type:
116-
description: Type of condition in CamelCase or in foo.example.com/CamelCase.
117-
Many .condition.type values are consistent across resources
118-
like Available, but because arbitrary conditions can be useful
119-
(see .node.status.conditions), the ability to deconflict is
120-
important.
124+
description: |-
125+
Type of condition in CamelCase or in foo.example.com/CamelCase.
126+
Many .condition.type values are consistent across resources like Available, but because arbitrary conditions
127+
can be useful (see .node.status.conditions), the ability to deconflict is important.
121128
type: string
122129
required:
123130
- status
@@ -129,8 +136,9 @@ spec:
129136
was initialized.
130137
type: boolean
131138
message:
132-
description: Message describes the reason in human readable form why
133-
the cluster is in the currrent phase
139+
description: |-
140+
Message describes the reason in human readable form why the cluster is in the currrent
141+
phase
134142
type: string
135143
observedGeneration:
136144
description: ObservedGeneration is the latest generation observed
@@ -146,18 +154,13 @@ spec:
146154
ready.
147155
type: boolean
148156
reason:
149-
description: Reason describes the reason in machine readable form
150-
why the cluster is in the current phase
157+
description: |-
158+
Reason describes the reason in machine readable form why the cluster is in the current
159+
phase
151160
type: string
152161
type: object
153162
type: object
154163
served: true
155164
storage: true
156165
subresources:
157166
status: {}
158-
status:
159-
acceptedNames:
160-
kind: ""
161-
plural: ""
162-
conditions: []
163-
storedVersions: []

0 commit comments

Comments
 (0)