Skip to content

Commit cd950b0

Browse files
committed
Update generated code and CRDs
Run hack/update-codegen.sh to update generated client code, deepcopy functions, and CRD manifests. This aligns the generated code with recent dependency updates, including changes to finalizer management and context usage in informers.
1 parent 1078924 commit cd950b0

File tree

59 files changed

+3406
-202
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+3406
-202
lines changed

config/300-crds/300-pipelinerun.yaml

Lines changed: 370 additions & 18 deletions
Large diffs are not rendered by default.

config/300-crds/300-stepaction.yaml

Lines changed: 78 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ spec:
101101
- name
102102
properties:
103103
name:
104-
description: Name of the environment variable. Must be a C_IDENTIFIER.
104+
description: |-
105+
Name of the environment variable.
106+
May consist of any printable ASCII characters except '='.
105107
type: string
106108
value:
107109
description: |-
@@ -156,6 +158,42 @@ spec:
156158
description: Path of the field to select in the specified API version.
157159
type: string
158160
x-kubernetes-map-type: atomic
161+
fileKeyRef:
162+
description: |-
163+
FileKeyRef selects a key of the env file.
164+
Requires the EnvFiles feature gate to be enabled.
165+
type: object
166+
required:
167+
- key
168+
- path
169+
- volumeName
170+
properties:
171+
key:
172+
description: |-
173+
The key within the env file. An invalid key will prevent the pod from starting.
174+
The keys defined within a source may consist of any printable ASCII characters except '='.
175+
During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters.
176+
type: string
177+
optional:
178+
description: |-
179+
Specify whether the file or its key must be defined. If the file or key
180+
does not exist, then the env var is not published.
181+
If optional is set to true and the specified key does not exist,
182+
the environment variable will not be set in the Pod's containers.
183+
184+
If optional is set to false and the specified key does not exist,
185+
an error will be returned during Pod creation.
186+
type: boolean
187+
default: false
188+
path:
189+
description: |-
190+
The path within the volume from which to select the file.
191+
Must be relative and may not contain the '..' path or start with '..'.
192+
type: string
193+
volumeName:
194+
description: The name of the volume mount containing the env file.
195+
type: string
196+
x-kubernetes-map-type: atomic
159197
resourceFieldRef:
160198
description: |-
161199
Selects a resource of the container: only resources limits and requests
@@ -638,7 +676,9 @@ spec:
638676
- name
639677
properties:
640678
name:
641-
description: Name of the environment variable. Must be a C_IDENTIFIER.
679+
description: |-
680+
Name of the environment variable.
681+
May consist of any printable ASCII characters except '='.
642682
type: string
643683
value:
644684
description: |-
@@ -693,6 +733,42 @@ spec:
693733
description: Path of the field to select in the specified API version.
694734
type: string
695735
x-kubernetes-map-type: atomic
736+
fileKeyRef:
737+
description: |-
738+
FileKeyRef selects a key of the env file.
739+
Requires the EnvFiles feature gate to be enabled.
740+
type: object
741+
required:
742+
- key
743+
- path
744+
- volumeName
745+
properties:
746+
key:
747+
description: |-
748+
The key within the env file. An invalid key will prevent the pod from starting.
749+
The keys defined within a source may consist of any printable ASCII characters except '='.
750+
During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters.
751+
type: string
752+
optional:
753+
description: |-
754+
Specify whether the file or its key must be defined. If the file or key
755+
does not exist, then the env var is not published.
756+
If optional is set to true and the specified key does not exist,
757+
the environment variable will not be set in the Pod's containers.
758+
759+
If optional is set to false and the specified key does not exist,
760+
an error will be returned during Pod creation.
761+
type: boolean
762+
default: false
763+
path:
764+
description: |-
765+
The path within the volume from which to select the file.
766+
Must be relative and may not contain the '..' path or start with '..'.
767+
type: string
768+
volumeName:
769+
description: The name of the volume mount containing the env file.
770+
type: string
771+
x-kubernetes-map-type: atomic
696772
resourceFieldRef:
697773
description: |-
698774
Selects a resource of the container: only resources limits and requests

0 commit comments

Comments
 (0)