-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathogen.krateo.io_restdefinitions.yaml
More file actions
403 lines (403 loc) · 18.9 KB
/
Copy pathogen.krateo.io_restdefinitions.yaml
File metadata and controls
403 lines (403 loc) · 18.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.16.5
name: restdefinitions.ogen.krateo.io
spec:
group: ogen.krateo.io
names:
categories:
- krateo
- restdefinition
- core
kind: RestDefinition
listKind: RestDefinitionList
plural: restdefinitions
singular: restdefinition
scope: Namespaced
versions:
- additionalPrinterColumns:
- jsonPath: .status.conditions[?(@.type=='Ready')].status
name: READY
type: string
- jsonPath: .metadata.creationTimestamp
name: AGE
type: date
- jsonPath: .status.resource.apiVersion
name: API VERSION
priority: 10
type: string
- jsonPath: .status.resource.kind
name: KIND
priority: 10
type: string
- jsonPath: .status.oasPath
name: OAS PATH
priority: 10
type: string
name: v1alpha1
schema:
openAPIV3Schema:
description: RestDefinition is a RestDefinition type with a spec and a status.
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: RestDefinitionSpec is the specification of a RestDefinition.
properties:
oasPath:
description: |-
Path to the OpenAPI specification. This value can change over time, for example if the OAS file is updated but be sure to not change the requestbody of the `create` verb.
- configmap://<namespace>/<name>/<key>
- http(s)://<url>
pattern: ^(configmap:\/\/([a-z0-9-]+)\/([a-z0-9-]+)\/([a-zA-Z0-9.-_]+)|https?:\/\/\S+)$
type: string
resource:
description: The resource to manage
properties:
additionalStatusFields:
description: 'AdditionalStatusFields: the list of fields to use
as additional status fields - used to populate the status of
the resource'
items:
type: string
type: array
x-kubernetes-validations:
- message: AdditionalStatusFields are immutable, you cannot change
them once the CRD has been generated
rule: self == oldSelf
configurationFields:
description: 'ConfigurationFields: the list of fields to use as
configuration fields'
items:
properties:
fromOpenAPI:
properties:
in:
type: string
name:
type: string
required:
- in
- name
type: object
fromRestDefinition:
properties:
actions:
description: 'Actions: the list of actions this configuration
applies to. Use ["*"] to apply to all actions.'
items:
type: string
minItems: 1
type: array
required:
- actions
type: object
required:
- fromOpenAPI
- fromRestDefinition
type: object
type: array
x-kubernetes-validations:
- message: ConfigurationFields are immutable, you cannot change
them once the CRD has been generated
rule: self == oldSelf
excludedSpecFields:
description: 'ExcludedSpecFields: the list of fields to exclude
from the spec of the generated CRD (for example server-generated
technical IDs could be excluded)'
items:
type: string
type: array
x-kubernetes-validations:
- message: ExcludedSpecFields are immutable, you cannot change
them once the CRD has been generated
rule: self == oldSelf
identifiers:
description: 'Identifiers: the list of fields to use as identifiers
- used to populate the status of the resource'
items:
type: string
type: array
x-kubernetes-validations:
- message: Identifiers are immutable, you cannot change them once
the CRD has been generated
rule: self == oldSelf
kind:
description: 'Name: the name of the resource to manage'
type: string
x-kubernetes-validations:
- message: Kind is immutable, you cannot change that once the
CRD has been generated
rule: self == oldSelf
verbsDescription:
description: 'VerbsDescription: the list of verbs to use on this
resource'
items:
properties:
action:
description: Name of the action to perform when this api
is called [create, update, get, delete, findby]
enum:
- create
- update
- get
- delete
- findby
type: string
identifiersMatchPolicy:
description: |-
IdentifiersMatchPolicy defines how to match identifiers for the 'findby' action. To be set only for 'findby' actions.
If not set, defaults to 'OR'.
Possible values are 'AND' or 'OR'.
- 'AND': all identifiers must match.
- 'OR': at least one identifier must match (the default behavior).
enum:
- AND
- OR
type: string
method:
description: 'Method: the http method to use [GET, POST,
PUT, DELETE, PATCH]'
enum:
- GET
- POST
- PUT
- DELETE
- PATCH
type: string
pagination:
description: |-
Pagination defines the pagination strategy for 'findby' actions. To be set only for 'findby' actions.
If not set, no pagination will be used.
properties:
continuationToken:
description: Configuration for 'continuationToken' pagination.
Required if type is 'continuationToken'.
properties:
request:
description: 'Request: defines how to include the
pagination token in the API request.'
properties:
tokenIn:
description: 'Where the token is located: "query",
"header" or "body". Currently, only "query"
is supported.'
enum:
- query
type: string
tokenPath:
description: |-
The path or name of the query parameter, header, or body field.
For query parameters and headers, this is simply the name.
For body fields, this should be a JSON path.
type: string
required:
- tokenIn
- tokenPath
type: object
response:
description: 'Response: defines how to extract the
pagination token from the API response.'
properties:
tokenIn:
description: 'Where the token is located: "header"
or "body". Currently, only "header" is supported.'
enum:
- header
type: string
tokenPath:
description: |-
The path or name of the header or body field.
For headers, this is simply the name.
For body fields, this should be a JSON path.
type: string
required:
- tokenIn
- tokenPath
type: object
required:
- request
- response
type: object
type:
description: Type specifies the pagination strategy.
Currently, only 'continuationToken' is supported.
enum:
- continuationToken
type: string
required:
- type
type: object
x-kubernetes-validations:
- message: continuationToken configuration must be provided
when type is 'continuationToken'
rule: 'self.type == ''continuationToken'' ? has(self.continuationToken)
: true'
path:
description: 'Path: the path to the api - has to be the
same path as the one in the OAS file you are referencing'
type: string
requestFieldMapping:
description: |-
RequestFieldMapping provides explicit mapping from API parameters (path, query, or body)
to fields in the Custom Resource.
items:
description: |-
RequestFieldMappingItem defines a single mapping from a path parameter, query parameter or body field
to a field in the Custom Resource.
properties:
inBody:
description: |-
InBody defines the name of the body parameter to be mapped.
Only one of 'inPath', 'inQuery' or 'inBody' can be set.
type: string
inCustomResource:
description: |-
InCustomResource defines the JSONPath to the field within the Custom Resource that holds the value.
For example: 'spec.name' or 'status.metadata.id'.
Note: potentially we could add validation to ensure this is a valid path (e.g., starts with 'spec.' or 'status.').
Currently, no validation is enforced on the content of this field.
type: string
inPath:
description: |-
InPath defines the name of the path parameter to be mapped.
Only one of 'inPath', 'inQuery' or 'inBody' can be set.
type: string
inQuery:
description: |-
InQuery defines the name of the query parameter to be mapped.
Only one of 'inPath', 'inQuery' or 'inBody' can be set.
type: string
required:
- inCustomResource
type: object
x-kubernetes-validations:
- message: Either inPath, inQuery or inBody must be set,
but not more than one
rule: '(has(self.inPath) ? 1 : 0) + (has(self.inQuery)
? 1 : 0) + (has(self.inBody) ? 1 : 0) == 1'
type: array
required:
- action
- method
- path
type: object
x-kubernetes-validations:
- message: identifiersMatchPolicy can only be set for 'findby'
actions
rule: self.action == 'findby' || !has(self.identifiersMatchPolicy)
- message: pagination can only be set for 'findby' actions
rule: self.action == 'findby' || !has(self.pagination)
type: array
required:
- kind
- verbsDescription
type: object
resourceGroup:
description: 'Group: the group of the resource to manage'
type: string
x-kubernetes-validations:
- message: ResourceGroup is immutable, you cannot change that once
the CRD has been generated
rule: self == oldSelf
required:
- oasPath
- resource
- resourceGroup
type: object
status:
description: RestDefinitionStatus is the status of a RestDefinition.
properties:
conditions:
description: Conditions of the resource.
items:
description: A Condition that may apply to a resource.
properties:
lastTransitionTime:
description: |-
LastTransitionTime is the last time this condition transitioned from one
status to another.
format: date-time
type: string
message:
description: |-
A Message containing details about this condition's last transition from
one status to another, if any.
type: string
reason:
description: A Reason for this condition's last transition from
one status to another.
type: string
status:
description: Status of this condition; is it currently True,
False, or Unknown?
type: string
type:
description: |-
Type of this condition. At most one of each condition type may apply to
a resource at any point in time.
type: string
required:
- lastTransitionTime
- reason
- status
- type
type: object
type: array
configuration:
description: 'Configuration: the configuration of the resource'
properties:
apiVersion:
description: 'APIVersion: the api version of the resource'
type: string
kind:
description: 'Kind: the kind of the resource'
type: string
type: object
digest:
description: 'Digest: the digest of the managed resources'
type: string
hasSecuritySchemes:
description: |-
HasSecuritySchemes: whether the OAS document defines security schemes.
Cached here so Observe does not need to re-fetch the OAS document on every reconcile.
type: boolean
oasPath:
description: 'OASPath: the path to the OAS Specification file.'
type: string
resource:
description: 'Resource: the resource to manage'
properties:
apiVersion:
description: 'APIVersion: the api version of the resource'
type: string
kind:
description: 'Kind: the kind of the resource'
type: string
type: object
required:
- oasPath
type: object
type: object
served: true
storage: true
subresources:
status: {}