Skip to content

Commit 117e658

Browse files
committed
bump(k8s): make update
1 parent 640c8d9 commit 117e658

File tree

50 files changed

+843
-268
lines changed

Some content is hidden

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

50 files changed

+843
-268
lines changed

config/v1/zz_generated.crd-manifests/0000_10_openshift-controller-manager_01_builds.crd.yaml

Lines changed: 41 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,9 @@ spec:
139139
in a Container.
140140
properties:
141141
name:
142-
description: Name of the environment variable. Must be a
143-
C_IDENTIFIER.
142+
description: |-
143+
Name of the environment variable.
144+
May consist of any printable ASCII characters except '='.
144145
type: string
145146
value:
146147
description: |-
@@ -198,6 +199,43 @@ spec:
198199
- fieldPath
199200
type: object
200201
x-kubernetes-map-type: atomic
202+
fileKeyRef:
203+
description: |-
204+
FileKeyRef selects a key of the env file.
205+
Requires the EnvFiles feature gate to be enabled.
206+
properties:
207+
key:
208+
description: |-
209+
The key within the env file. An invalid key will prevent the pod from starting.
210+
The keys defined within a source may consist of any printable ASCII characters except '='.
211+
During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters.
212+
type: string
213+
optional:
214+
default: false
215+
description: |-
216+
Specify whether the file or its key must be defined. If the file or key
217+
does not exist, then the env var is not published.
218+
If optional is set to true and the specified key does not exist,
219+
the environment variable will not be set in the Pod's containers.
220+
221+
If optional is set to false and the specified key does not exist,
222+
an error will be returned during Pod creation.
223+
type: boolean
224+
path:
225+
description: |-
226+
The path within the volume from which to select the file.
227+
Must be relative and may not contain the '..' path or start with '..'.
228+
type: string
229+
volumeName:
230+
description: The name of the volume mount containing
231+
the env file.
232+
type: string
233+
required:
234+
- key
235+
- path
236+
- volumeName
237+
type: object
238+
x-kubernetes-map-type: atomic
201239
resourceFieldRef:
202240
description: |-
203241
Selects a resource of the container: only resources limits and requests
@@ -338,7 +376,7 @@ spec:
338376
Claims lists the names of resources, defined in spec.resourceClaims,
339377
that are used by this container.
340378
341-
This is an alpha field and requires enabling the
379+
This field depends on the
342380
DynamicResourceAllocation feature gate.
343381
344382
This field is immutable. It can only be set for containers.

config/v1/zz_generated.featuregated-crd-manifests/builds.config.openshift.io/AAA_ungated.yaml

Lines changed: 41 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,9 @@ spec:
140140
in a Container.
141141
properties:
142142
name:
143-
description: Name of the environment variable. Must be a
144-
C_IDENTIFIER.
143+
description: |-
144+
Name of the environment variable.
145+
May consist of any printable ASCII characters except '='.
145146
type: string
146147
value:
147148
description: |-
@@ -199,6 +200,43 @@ spec:
199200
- fieldPath
200201
type: object
201202
x-kubernetes-map-type: atomic
203+
fileKeyRef:
204+
description: |-
205+
FileKeyRef selects a key of the env file.
206+
Requires the EnvFiles feature gate to be enabled.
207+
properties:
208+
key:
209+
description: |-
210+
The key within the env file. An invalid key will prevent the pod from starting.
211+
The keys defined within a source may consist of any printable ASCII characters except '='.
212+
During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters.
213+
type: string
214+
optional:
215+
default: false
216+
description: |-
217+
Specify whether the file or its key must be defined. If the file or key
218+
does not exist, then the env var is not published.
219+
If optional is set to true and the specified key does not exist,
220+
the environment variable will not be set in the Pod's containers.
221+
222+
If optional is set to false and the specified key does not exist,
223+
an error will be returned during Pod creation.
224+
type: boolean
225+
path:
226+
description: |-
227+
The path within the volume from which to select the file.
228+
Must be relative and may not contain the '..' path or start with '..'.
229+
type: string
230+
volumeName:
231+
description: The name of the volume mount containing
232+
the env file.
233+
type: string
234+
required:
235+
- key
236+
- path
237+
- volumeName
238+
type: object
239+
x-kubernetes-map-type: atomic
202240
resourceFieldRef:
203241
description: |-
204242
Selects a resource of the container: only resources limits and requests
@@ -339,7 +377,7 @@ spec:
339377
Claims lists the names of resources, defined in spec.resourceClaims,
340378
that are used by this container.
341379
342-
This is an alpha field and requires enabling the
380+
This field depends on the
343381
DynamicResourceAllocation feature gate.
344382
345383
This field is immutable. It can only be set for containers.

config/v1alpha1/zz_generated.crd-manifests/0000_10_config-operator_01_clustermonitoring-CustomNoUpgrade.crd.yaml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -662,15 +662,13 @@ spec:
662662
volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.
663663
If specified, the CSI driver will create or update the volume with the attributes defined
664664
in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,
665-
it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass
666-
will be applied to the claim but it's not allowed to reset this field to empty string once it is set.
667-
If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass
668-
will be set by the persistentvolume controller if it exists.
665+
it can be changed after the claim is created. An empty string or nil value indicates that no
666+
VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state,
667+
this field can be reset to its previous value (including nil) to cancel the modification.
669668
If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be
670669
set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource
671670
exists.
672671
More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/
673-
(Beta) Using this field requires the VolumeAttributesClass feature gate to be enabled (off by default).
674672
type: string
675673
volumeMode:
676674
description: |-
@@ -841,13 +839,11 @@ spec:
841839
description: |-
842840
currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.
843841
When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim
844-
This is a beta field and requires enabling VolumeAttributesClass feature (off by default).
845842
type: string
846843
modifyVolumeStatus:
847844
description: |-
848845
ModifyVolumeStatus represents the status object of ControllerModifyVolume operation.
849846
When this is unset, there is no ModifyVolume operation being attempted.
850-
This is a beta field and requires enabling VolumeAttributesClass feature (off by default).
851847
properties:
852848
status:
853849
description: "status is the status of the ControllerModifyVolume

config/v1alpha1/zz_generated.crd-manifests/0000_10_config-operator_01_clustermonitoring-DevPreviewNoUpgrade.crd.yaml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -662,15 +662,13 @@ spec:
662662
volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.
663663
If specified, the CSI driver will create or update the volume with the attributes defined
664664
in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,
665-
it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass
666-
will be applied to the claim but it's not allowed to reset this field to empty string once it is set.
667-
If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass
668-
will be set by the persistentvolume controller if it exists.
665+
it can be changed after the claim is created. An empty string or nil value indicates that no
666+
VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state,
667+
this field can be reset to its previous value (including nil) to cancel the modification.
669668
If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be
670669
set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource
671670
exists.
672671
More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/
673-
(Beta) Using this field requires the VolumeAttributesClass feature gate to be enabled (off by default).
674672
type: string
675673
volumeMode:
676674
description: |-
@@ -841,13 +839,11 @@ spec:
841839
description: |-
842840
currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.
843841
When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim
844-
This is a beta field and requires enabling VolumeAttributesClass feature (off by default).
845842
type: string
846843
modifyVolumeStatus:
847844
description: |-
848845
ModifyVolumeStatus represents the status object of ControllerModifyVolume operation.
849846
When this is unset, there is no ModifyVolume operation being attempted.
850-
This is a beta field and requires enabling VolumeAttributesClass feature (off by default).
851847
properties:
852848
status:
853849
description: "status is the status of the ControllerModifyVolume

config/v1alpha1/zz_generated.crd-manifests/0000_10_config-operator_01_clustermonitoring-TechPreviewNoUpgrade.crd.yaml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -662,15 +662,13 @@ spec:
662662
volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.
663663
If specified, the CSI driver will create or update the volume with the attributes defined
664664
in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,
665-
it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass
666-
will be applied to the claim but it's not allowed to reset this field to empty string once it is set.
667-
If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass
668-
will be set by the persistentvolume controller if it exists.
665+
it can be changed after the claim is created. An empty string or nil value indicates that no
666+
VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state,
667+
this field can be reset to its previous value (including nil) to cancel the modification.
669668
If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be
670669
set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource
671670
exists.
672671
More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/
673-
(Beta) Using this field requires the VolumeAttributesClass feature gate to be enabled (off by default).
674672
type: string
675673
volumeMode:
676674
description: |-
@@ -841,13 +839,11 @@ spec:
841839
description: |-
842840
currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.
843841
When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim
844-
This is a beta field and requires enabling VolumeAttributesClass feature (off by default).
845842
type: string
846843
modifyVolumeStatus:
847844
description: |-
848845
ModifyVolumeStatus represents the status object of ControllerModifyVolume operation.
849846
When this is unset, there is no ModifyVolume operation being attempted.
850-
This is a beta field and requires enabling VolumeAttributesClass feature (off by default).
851847
properties:
852848
status:
853849
description: "status is the status of the ControllerModifyVolume

config/v1alpha1/zz_generated.featuregated-crd-manifests/clustermonitoring.config.openshift.io/ClusterMonitoringConfig.yaml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -662,15 +662,13 @@ spec:
662662
volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.
663663
If specified, the CSI driver will create or update the volume with the attributes defined
664664
in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,
665-
it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass
666-
will be applied to the claim but it's not allowed to reset this field to empty string once it is set.
667-
If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass
668-
will be set by the persistentvolume controller if it exists.
665+
it can be changed after the claim is created. An empty string or nil value indicates that no
666+
VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state,
667+
this field can be reset to its previous value (including nil) to cancel the modification.
669668
If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be
670669
set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource
671670
exists.
672671
More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/
673-
(Beta) Using this field requires the VolumeAttributesClass feature gate to be enabled (off by default).
674672
type: string
675673
volumeMode:
676674
description: |-
@@ -841,13 +839,11 @@ spec:
841839
description: |-
842840
currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.
843841
When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim
844-
This is a beta field and requires enabling VolumeAttributesClass feature (off by default).
845842
type: string
846843
modifyVolumeStatus:
847844
description: |-
848845
ModifyVolumeStatus represents the status object of ControllerModifyVolume operation.
849846
When this is unset, there is no ModifyVolume operation being attempted.
850-
This is a beta field and requires enabling VolumeAttributesClass feature (off by default).
851847
properties:
852848
status:
853849
description: "status is the status of the ControllerModifyVolume

0 commit comments

Comments
 (0)