Skip to content

Commit bf98035

Browse files
rsoaresdMatousJobanekalexeykazakov
authored
Co-authored-by: Matous Jobanek <mjobanek@redhat.com> Co-authored-by: Alexey Kazakov <alkazako@redhat.com>
1 parent 7d0c92d commit bf98035

9 files changed

+234
-168
lines changed

config/crd/bases/toolchain.dev.openshift.com_idlers.yaml

Lines changed: 18 additions & 12 deletions
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.12.0
6+
controller-gen.kubebuilder.io/version: v0.15.0
77
name: idlers.toolchain.dev.openshift.com
88
spec:
99
group: toolchain.dev.openshift.com
@@ -27,20 +27,25 @@ spec:
2727
name: v1alpha1
2828
schema:
2929
openAPIV3Schema:
30-
description: Idler enables automatic idling of payloads in a user namespaces
30+
description: |-
31+
Idler enables automatic idling of payloads in a user namespaces
3132
where the name of the Idler matches the name of the corresponding namespace.
32-
For example an Idler with "foo" name will be managing pods in namespace
33-
"foo".
33+
For example an Idler with "foo" name will be managing pods in namespace "foo".
3434
properties:
3535
apiVersion:
36-
description: 'APIVersion defines the versioned schema of this representation
37-
of an object. Servers should convert recognized schemas to the latest
38-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
36+
description: |-
37+
APIVersion defines the versioned schema of this representation of an object.
38+
Servers should convert recognized schemas to the latest internal value, and
39+
may reject unrecognized values.
40+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
3941
type: string
4042
kind:
41-
description: 'Kind is a string value representing the REST resource this
42-
object represents. Servers may infer this from the endpoint the client
43-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
43+
description: |-
44+
Kind is a string value representing the REST resource this object represents.
45+
Servers may infer this from the endpoint the client submits requests to.
46+
Cannot be updated.
47+
In CamelCase.
48+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
4449
type: string
4550
metadata:
4651
type: object
@@ -59,8 +64,9 @@ spec:
5964
description: IdlerStatus defines the observed state of Idler
6065
properties:
6166
conditions:
62-
description: 'Conditions is an array of current Idler conditions Supported
63-
condition types: ConditionReady'
67+
description: |-
68+
Conditions is an array of current Idler conditions
69+
Supported condition types: ConditionReady
6470
items:
6571
properties:
6672
lastTransitionTime:

config/crd/bases/toolchain.dev.openshift.com_memberoperatorconfigs.yaml

Lines changed: 15 additions & 11 deletions
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.12.0
6+
controller-gen.kubebuilder.io/version: v0.15.0
77
name: memberoperatorconfigs.toolchain.dev.openshift.com
88
spec:
99
group: toolchain.dev.openshift.com
@@ -21,14 +21,19 @@ spec:
2121
in member operator
2222
properties:
2323
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'
24+
description: |-
25+
APIVersion defines the versioned schema of this representation of an object.
26+
Servers should convert recognized schemas to the latest internal value, and
27+
may reject unrecognized values.
28+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
2729
type: string
2830
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'
31+
description: |-
32+
Kind is a string value representing the REST resource this object represents.
33+
Servers may infer this from the endpoint the client submits requests to.
34+
Cannot be updated.
35+
In CamelCase.
36+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
3237
type: string
3338
metadata:
3439
type: object
@@ -153,10 +158,9 @@ spec:
153158
description: Keeps parameters concerned with the webhook
154159
properties:
155160
deploy:
156-
description: Defines the flag that determines whether to deploy
157-
the Webhook. If the deploy flag is set to False and the Webhook
158-
was deployed previously it will be deleted by the memberoperatorconfig
159-
controller.
161+
description: |-
162+
Defines the flag that determines whether to deploy the Webhook.
163+
If the deploy flag is set to False and the Webhook was deployed previously it will be deleted by the memberoperatorconfig controller.
160164
type: boolean
161165
secret:
162166
description: Defines all secrets related to webhook configuration

config/crd/bases/toolchain.dev.openshift.com_memberstatuses.yaml

Lines changed: 33 additions & 22 deletions
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.12.0
6+
controller-gen.kubebuilder.io/version: v0.15.0
77
name: memberstatuses.toolchain.dev.openshift.com
88
spec:
99
group: toolchain.dev.openshift.com
@@ -27,14 +27,19 @@ spec:
2727
description: MemberStatus is used to track toolchain member status
2828
properties:
2929
apiVersion:
30-
description: 'APIVersion defines the versioned schema of this representation
31-
of an object. Servers should convert recognized schemas to the latest
32-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
30+
description: |-
31+
APIVersion defines the versioned schema of this representation of an object.
32+
Servers should convert recognized schemas to the latest internal value, and
33+
may reject unrecognized values.
34+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
3335
type: string
3436
kind:
35-
description: 'Kind is a string value representing the REST resource this
36-
object represents. Servers may infer this from the endpoint the client
37-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
37+
description: |-
38+
Kind is a string value representing the REST resource this object represents.
39+
Servers may infer this from the endpoint the client submits requests to.
40+
Cannot be updated.
41+
In CamelCase.
42+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
3843
type: string
3944
metadata:
4045
type: object
@@ -50,8 +55,9 @@ spec:
5055
the member configuration is correct
5156
properties:
5257
conditions:
53-
description: 'Conditions is an array of current Che status conditions
54-
Supported condition types: ConditionReady'
58+
description: |-
59+
Conditions is an array of current Che status conditions
60+
Supported condition types: ConditionReady
5561
items:
5662
properties:
5763
lastTransitionTime:
@@ -87,8 +93,9 @@ spec:
8793
x-kubernetes-list-type: map
8894
type: object
8995
conditions:
90-
description: 'Conditions is an array of current toolchain status conditions
91-
Supported condition types: ConditionReady'
96+
description: |-
97+
Conditions is an array of current toolchain status conditions
98+
Supported condition types: ConditionReady
9299
items:
93100
properties:
94101
lastTransitionTime:
@@ -125,8 +132,9 @@ spec:
125132
description: Host is the status of the connection with the host cluster
126133
properties:
127134
conditions:
128-
description: 'Conditions is an array of current member operator
129-
status conditions Supported condition types: ConditionReady'
135+
description: |-
136+
Conditions is an array of current member operator status conditions
137+
Supported condition types: ConditionReady
130138
items:
131139
properties:
132140
lastTransitionTime:
@@ -166,8 +174,9 @@ spec:
166174
host cluster
167175
properties:
168176
apiEndpoint:
169-
description: APIEndpoint is the API endpoint of the remote cluster.
170-
This can be a hostname, hostname:port, IP or IP:port.
177+
description: |-
178+
APIEndpoint is the API endpoint of the remote cluster. This can be a hostname,
179+
hostname:port, IP or IP:port.
171180
type: string
172181
conditions:
173182
description: Conditions is an array of current cluster conditions.
@@ -216,8 +225,9 @@ spec:
216225
description: The timestamp of the member operator build
217226
type: string
218227
conditions:
219-
description: 'Conditions is an array of current member operator
220-
status conditions Supported condition types: ConditionReady'
228+
description: |-
229+
Conditions is an array of current member operator status conditions
230+
Supported condition types: ConditionReady
221231
items:
222232
properties:
223233
lastTransitionTime:
@@ -263,9 +273,9 @@ spec:
263273
deployment
264274
properties:
265275
conditions:
266-
description: 'Conditions is an array of status conditions
267-
for the health of the registration service Supported condition
268-
types: ConditionReady'
276+
description: |-
277+
Conditions is an array of status conditions for the health of the registration service
278+
Supported condition types: ConditionReady
269279
items:
270280
properties:
271281
lastTransitionTime:
@@ -329,8 +339,9 @@ spec:
329339
if Che is installed
330340
type: string
331341
conditions:
332-
description: 'Conditions is an array of current member operator
333-
status conditions Supported condition types: ConditionReady'
342+
description: |-
343+
Conditions is an array of current member operator status conditions
344+
Supported condition types: ConditionReady
334345
items:
335346
properties:
336347
lastTransitionTime:

config/crd/bases/toolchain.dev.openshift.com_nstemplatesets.yaml

Lines changed: 18 additions & 12 deletions
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.12.0
6+
controller-gen.kubebuilder.io/version: v0.15.0
77
name: nstemplatesets.toolchain.dev.openshift.com
88
spec:
99
group: toolchain.dev.openshift.com
@@ -31,14 +31,19 @@ spec:
3131
used for namespace provisioning
3232
properties:
3333
apiVersion:
34-
description: 'APIVersion defines the versioned schema of this representation
35-
of an object. Servers should convert recognized schemas to the latest
36-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
34+
description: |-
35+
APIVersion defines the versioned schema of this representation of an object.
36+
Servers should convert recognized schemas to the latest internal value, and
37+
may reject unrecognized values.
38+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
3739
type: string
3840
kind:
39-
description: 'Kind is a string value representing the REST resource this
40-
object represents. Servers may infer this from the endpoint the client
41-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
41+
description: |-
42+
Kind is a string value representing the REST resource this object represents.
43+
Servers may infer this from the endpoint the client submits requests to.
44+
Cannot be updated.
45+
In CamelCase.
46+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
4247
type: string
4348
metadata:
4449
type: object
@@ -120,8 +125,9 @@ spec:
120125
- templateRef
121126
type: object
122127
conditions:
123-
description: 'Conditions is an array of current NSTemplateSet conditions
124-
Supported condition types: ConditionReady'
128+
description: |-
129+
Conditions is an array of current NSTemplateSet conditions
130+
Supported condition types: ConditionReady
125131
items:
126132
properties:
127133
lastTransitionTime:
@@ -183,9 +189,9 @@ spec:
183189
description: ProvisionedNamespaces is a list of Namespaces that were
184190
provisioned by the NSTemplateSet.
185191
items:
186-
description: SpaceNamespace is a common type to define the information
187-
about a namespace within a Space Used in NSTemplateSet, Space
188-
and Workspace status
192+
description: |-
193+
SpaceNamespace is a common type to define the information about a namespace within a Space
194+
Used in NSTemplateSet, Space and Workspace status
189195
properties:
190196
name:
191197
description: Name the name of the namespace.

config/crd/bases/toolchain.dev.openshift.com_spacebindingrequests.yaml

Lines changed: 19 additions & 12 deletions
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.12.0
6+
controller-gen.kubebuilder.io/version: v0.15.0
77
name: spacebindingrequests.toolchain.dev.openshift.com
88
spec:
99
group: toolchain.dev.openshift.com
@@ -34,23 +34,29 @@ spec:
3434
API
3535
properties:
3636
apiVersion:
37-
description: 'APIVersion defines the versioned schema of this representation
38-
of an object. Servers should convert recognized schemas to the latest
39-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
37+
description: |-
38+
APIVersion defines the versioned schema of this representation of an object.
39+
Servers should convert recognized schemas to the latest internal value, and
40+
may reject unrecognized values.
41+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
4042
type: string
4143
kind:
42-
description: 'Kind is a string value representing the REST resource this
43-
object represents. Servers may infer this from the endpoint the client
44-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
44+
description: |-
45+
Kind is a string value representing the REST resource this object represents.
46+
Servers may infer this from the endpoint the client submits requests to.
47+
Cannot be updated.
48+
In CamelCase.
49+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
4550
type: string
4651
metadata:
4752
type: object
4853
spec:
4954
description: SpaceBindingRequestSpec defines the desired state of SpaceBindingRequest
5055
properties:
5156
masterUserRecord:
52-
description: MasterUserRecord is a required property introduced to
53-
retain the name of the MUR for which this SpaceBinding is provisioned.
57+
description: |-
58+
MasterUserRecord is a required property introduced to retain the name of the MUR
59+
for which this SpaceBinding is provisioned.
5460
type: string
5561
spaceRole:
5662
description: SpaceRole is a required property which defines the role
@@ -65,9 +71,10 @@ spec:
6571
description: SpaceBindingRequestStatus defines the observed state of SpaceBinding
6672
properties:
6773
conditions:
68-
description: 'Conditions is an array of SpaceBindingRequest conditions
69-
Supported condition types: Provisioning, SpaceBindingNotReady and
70-
Ready'
74+
description: |-
75+
Conditions is an array of SpaceBindingRequest conditions
76+
Supported condition types:
77+
Provisioning, SpaceBindingNotReady and Ready
7178
items:
7279
properties:
7380
lastTransitionTime:

0 commit comments

Comments
 (0)