Skip to content

Commit d872542

Browse files
committed
Update generated CRD
1 parent 0769fef commit d872542

File tree

2 files changed

+80
-3
lines changed

2 files changed

+80
-3
lines changed

config/crd/skiperator.kartverket.no_applications.yaml

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,9 @@ spec:
330330
a Container.
331331
properties:
332332
name:
333-
description: Name of the environment variable. Must be a C_IDENTIFIER.
333+
description: |-
334+
Name of the environment variable.
335+
May consist of any printable ASCII characters except '='.
334336
type: string
335337
value:
336338
description: |-
@@ -388,6 +390,43 @@ spec:
388390
- fieldPath
389391
type: object
390392
x-kubernetes-map-type: atomic
393+
fileKeyRef:
394+
description: |-
395+
FileKeyRef selects a key of the env file.
396+
Requires the EnvFiles feature gate to be enabled.
397+
properties:
398+
key:
399+
description: |-
400+
The key within the env file. An invalid key will prevent the pod from starting.
401+
The keys defined within a source may consist of any printable ASCII characters except '='.
402+
During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters.
403+
type: string
404+
optional:
405+
default: false
406+
description: |-
407+
Specify whether the file or its key must be defined. If the file or key
408+
does not exist, then the env var is not published.
409+
If optional is set to true and the specified key does not exist,
410+
the environment variable will not be set in the Pod's containers.
411+
412+
If optional is set to false and the specified key does not exist,
413+
an error will be returned during Pod creation.
414+
type: boolean
415+
path:
416+
description: |-
417+
The path within the volume from which to select the file.
418+
Must be relative and may not contain the '..' path or start with '..'.
419+
type: string
420+
volumeName:
421+
description: The name of the volume mount containing
422+
the env file.
423+
type: string
424+
required:
425+
- key
426+
- path
427+
- volumeName
428+
type: object
429+
x-kubernetes-map-type: atomic
391430
resourceFieldRef:
392431
description: |-
393432
Selects a resource of the container: only resources limits and requests

config/crd/skiperator.kartverket.no_skipjobs.yaml

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,9 @@ spec:
304304
in a Container.
305305
properties:
306306
name:
307-
description: Name of the environment variable. Must be a
308-
C_IDENTIFIER.
307+
description: |-
308+
Name of the environment variable.
309+
May consist of any printable ASCII characters except '='.
309310
type: string
310311
value:
311312
description: |-
@@ -363,6 +364,43 @@ spec:
363364
- fieldPath
364365
type: object
365366
x-kubernetes-map-type: atomic
367+
fileKeyRef:
368+
description: |-
369+
FileKeyRef selects a key of the env file.
370+
Requires the EnvFiles feature gate to be enabled.
371+
properties:
372+
key:
373+
description: |-
374+
The key within the env file. An invalid key will prevent the pod from starting.
375+
The keys defined within a source may consist of any printable ASCII characters except '='.
376+
During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters.
377+
type: string
378+
optional:
379+
default: false
380+
description: |-
381+
Specify whether the file or its key must be defined. If the file or key
382+
does not exist, then the env var is not published.
383+
If optional is set to true and the specified key does not exist,
384+
the environment variable will not be set in the Pod's containers.
385+
386+
If optional is set to false and the specified key does not exist,
387+
an error will be returned during Pod creation.
388+
type: boolean
389+
path:
390+
description: |-
391+
The path within the volume from which to select the file.
392+
Must be relative and may not contain the '..' path or start with '..'.
393+
type: string
394+
volumeName:
395+
description: The name of the volume mount containing
396+
the env file.
397+
type: string
398+
required:
399+
- key
400+
- path
401+
- volumeName
402+
type: object
403+
x-kubernetes-map-type: atomic
366404
resourceFieldRef:
367405
description: |-
368406
Selects a resource of the container: only resources limits and requests

0 commit comments

Comments
 (0)