Skip to content

Commit 0e57b32

Browse files
committed
fix(controller-runtime): bump version to v0.14.0
Signed-off-by: Dario Tranchitella <[email protected]>
1 parent 4753c8a commit 0e57b32

5 files changed

+6420
-3919
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ kind: ## Download kind locally if necessary.
8585

8686
CONTROLLER_GEN = $(shell pwd)/bin/controller-gen
8787
controller-gen: ## Download controller-gen locally if necessary.
88-
$(call go-install-tool,$(CONTROLLER_GEN),sigs.k8s.io/controller-tools/cmd/controller-gen@v0.11.4)
88+
$(call go-install-tool,$(CONTROLLER_GEN),sigs.k8s.io/controller-tools/cmd/controller-gen@v0.14.0)
8989

9090
GOLANGCI_LINT = $(shell pwd)/bin/golangci-lint
9191
golangci-lint: ## Download golangci-lint locally if necessary.

config/crd/bases/kamaji.clastix.io_datastores.yaml

+52-38
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.11.4
6+
controller-gen.kubebuilder.io/version: v0.14.0
77
name: datastores.kamaji.clastix.io
88
spec:
99
group: kamaji.clastix.io
@@ -29,36 +29,44 @@ spec:
2929
description: DataStore is the Schema for the datastores API.
3030
properties:
3131
apiVersion:
32-
description: 'APIVersion defines the versioned schema of this representation
33-
of an object. Servers should convert recognized schemas to the latest
34-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
32+
description: |-
33+
APIVersion defines the versioned schema of this representation of an object.
34+
Servers should convert recognized schemas to the latest internal value, and
35+
may reject unrecognized values.
36+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
3537
type: string
3638
kind:
37-
description: 'Kind is a string value representing the REST resource this
38-
object represents. Servers may infer this from the endpoint the client
39-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
39+
description: |-
40+
Kind is a string value representing the REST resource this object represents.
41+
Servers may infer this from the endpoint the client submits requests to.
42+
Cannot be updated.
43+
In CamelCase.
44+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
4045
type: string
4146
metadata:
4247
type: object
4348
spec:
4449
description: DataStoreSpec defines the desired state of DataStore.
4550
properties:
4651
basicAuth:
47-
description: In case of authentication enabled for the given data
48-
store, specifies the username and password pair. This value is optional.
52+
description: |-
53+
In case of authentication enabled for the given data store, specifies the username and password pair.
54+
This value is optional.
4955
properties:
5056
password:
5157
properties:
5258
content:
53-
description: Bare content of the file, base64 encoded. It
54-
has precedence over the SecretReference value.
59+
description: |-
60+
Bare content of the file, base64 encoded.
61+
It has precedence over the SecretReference value.
5562
format: byte
5663
type: string
5764
secretReference:
5865
properties:
5966
keyPath:
60-
description: Name of the key for the given Secret reference
61-
where the content is stored. This value is mandatory.
67+
description: |-
68+
Name of the key for the given Secret reference where the content is stored.
69+
This value is mandatory.
6270
minLength: 1
6371
type: string
6472
name:
@@ -77,15 +85,17 @@ spec:
7785
username:
7886
properties:
7987
content:
80-
description: Bare content of the file, base64 encoded. It
81-
has precedence over the SecretReference value.
88+
description: |-
89+
Bare content of the file, base64 encoded.
90+
It has precedence over the SecretReference value.
8291
format: byte
8392
type: string
8493
secretReference:
8594
properties:
8695
keyPath:
87-
description: Name of the key for the given Secret reference
88-
where the content is stored. This value is mandatory.
96+
description: |-
97+
Name of the key for the given Secret reference where the content is stored.
98+
This value is mandatory.
8999
minLength: 1
90100
type: string
91101
name:
@@ -113,7 +123,8 @@ spec:
113123
- PostgreSQL
114124
type: string
115125
endpoints:
116-
description: List of the endpoints to connect to the shared datastore.
126+
description: |-
127+
List of the endpoints to connect to the shared datastore.
117128
No need for protocol, just bare IP/FQDN and port.
118129
items:
119130
type: string
@@ -124,24 +135,24 @@ spec:
124135
to the data store in a secure way.
125136
properties:
126137
certificateAuthority:
127-
description: Retrieve the Certificate Authority certificate and
128-
private key, such as bare content of the file, or a SecretReference.
129-
The key reference is required since etcd authentication is based
130-
on certificates, and Kamaji is responsible in creating this.
138+
description: |-
139+
Retrieve the Certificate Authority certificate and private key, such as bare content of the file, or a SecretReference.
140+
The key reference is required since etcd authentication is based on certificates, and Kamaji is responsible in creating this.
131141
properties:
132142
certificate:
133143
properties:
134144
content:
135-
description: Bare content of the file, base64 encoded.
145+
description: |-
146+
Bare content of the file, base64 encoded.
136147
It has precedence over the SecretReference value.
137148
format: byte
138149
type: string
139150
secretReference:
140151
properties:
141152
keyPath:
142-
description: Name of the key for the given Secret
143-
reference where the content is stored. This value
144-
is mandatory.
153+
description: |-
154+
Name of the key for the given Secret reference where the content is stored.
155+
This value is mandatory.
145156
minLength: 1
146157
type: string
147158
name:
@@ -160,16 +171,17 @@ spec:
160171
privateKey:
161172
properties:
162173
content:
163-
description: Bare content of the file, base64 encoded.
174+
description: |-
175+
Bare content of the file, base64 encoded.
164176
It has precedence over the SecretReference value.
165177
format: byte
166178
type: string
167179
secretReference:
168180
properties:
169181
keyPath:
170-
description: Name of the key for the given Secret
171-
reference where the content is stored. This value
172-
is mandatory.
182+
description: |-
183+
Name of the key for the given Secret reference where the content is stored.
184+
This value is mandatory.
173185
minLength: 1
174186
type: string
175187
name:
@@ -195,16 +207,17 @@ spec:
195207
certificate:
196208
properties:
197209
content:
198-
description: Bare content of the file, base64 encoded.
210+
description: |-
211+
Bare content of the file, base64 encoded.
199212
It has precedence over the SecretReference value.
200213
format: byte
201214
type: string
202215
secretReference:
203216
properties:
204217
keyPath:
205-
description: Name of the key for the given Secret
206-
reference where the content is stored. This value
207-
is mandatory.
218+
description: |-
219+
Name of the key for the given Secret reference where the content is stored.
220+
This value is mandatory.
208221
minLength: 1
209222
type: string
210223
name:
@@ -223,16 +236,17 @@ spec:
223236
privateKey:
224237
properties:
225238
content:
226-
description: Bare content of the file, base64 encoded.
239+
description: |-
240+
Bare content of the file, base64 encoded.
227241
It has precedence over the SecretReference value.
228242
format: byte
229243
type: string
230244
secretReference:
231245
properties:
232246
keyPath:
233-
description: Name of the key for the given Secret
234-
reference where the content is stored. This value
235-
is mandatory.
247+
description: |-
248+
Name of the key for the given Secret reference where the content is stored.
249+
This value is mandatory.
236250
minLength: 1
237251
type: string
238252
name:

0 commit comments

Comments
 (0)