@@ -545,15 +545,13 @@ spec:
545545 volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.
546546 If specified, the CSI driver will create or update the volume with the attributes defined
547547 in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,
548- it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass
549- will be applied to the claim but it's not allowed to reset this field to empty string once it is set.
550- If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass
551- will be set by the persistentvolume controller if it exists.
548+ it can be changed after the claim is created. An empty string or nil value indicates that no
549+ VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state,
550+ this field can be reset to its previous value (including nil) to cancel the modification.
552551 If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be
553552 set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource
554553 exists.
555554 More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/
556- (Beta) Using this field requires the VolumeAttributesClass feature gate to be enabled (off by default).
557555 type : string
558556 volumeMode :
559557 description : |-
@@ -1823,8 +1821,8 @@ spec:
18231821 most preferred is the one with the greatest sum of weights, i.e.
18241822 for each node that meets all of the scheduling requirements (resource
18251823 request, requiredDuringScheduling anti-affinity expressions, etc.),
1826- compute a sum by iterating through the elements of this field and adding
1827- "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
1824+ compute a sum by iterating through the elements of this field and subtracting
1825+ "weight" from the sum if the node has pods which matches the corresponding podAffinityTerm; the
18281826 node(s) with the highest sum are the most preferred.
18291827 items :
18301828 description : The weights of all of the matched WeightedPodAffinityTerm
@@ -2768,7 +2766,7 @@ spec:
27682766 Claims lists the names of resources, defined in spec.resourceClaims,
27692767 that are used by this container.
27702768
2771- This is an alpha field and requires enabling the
2769+ This field depends on the
27722770 DynamicResourceAllocation feature gate.
27732771
27742772 This field is immutable. It can only be set for containers.
@@ -3756,8 +3754,8 @@ spec:
37563754 most preferred is the one with the greatest sum of weights, i.e.
37573755 for each node that meets all of the scheduling requirements (resource
37583756 request, requiredDuringScheduling anti-affinity expressions, etc.),
3759- compute a sum by iterating through the elements of this field and adding
3760- "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
3757+ compute a sum by iterating through the elements of this field and subtracting
3758+ "weight" from the sum if the node has pods which matches the corresponding podAffinityTerm; the
37613759 node(s) with the highest sum are the most preferred.
37623760 items :
37633761 description : The weights of all of the matched WeightedPodAffinityTerm
@@ -4538,15 +4536,13 @@ spec:
45384536 volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.
45394537 If specified, the CSI driver will create or update the volume with the attributes defined
45404538 in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,
4541- it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass
4542- will be applied to the claim but it's not allowed to reset this field to empty string once it is set.
4543- If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass
4544- will be set by the persistentvolume controller if it exists.
4539+ it can be changed after the claim is created. An empty string or nil value indicates that no
4540+ VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state,
4541+ this field can be reset to its previous value (including nil) to cancel the modification.
45454542 If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be
45464543 set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource
45474544 exists.
45484545 More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/
4549- (Beta) Using this field requires the VolumeAttributesClass feature gate to be enabled (off by default).
45504546 type : string
45514547 volumeMode :
45524548 description : |-
0 commit comments