|
699 | 699 | "type": "string"
|
700 | 700 | },
|
701 | 701 | "resourceClaimTemplateName": {
|
702 |
| - "description": "ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this pod.\n\nThe template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The name of the ResourceClaim will be <pod name>-<resource name>, where <resource name> is the PodResourceClaim.Name. Pod validation will reject the pod if the concatenated name is not valid for a ResourceClaim (e.g. too long).\n\nAn existing ResourceClaim with that name that is not owned by the pod will not be used for the pod to avoid using an unrelated resource by mistake. Scheduling and pod startup are then blocked until the unrelated ResourceClaim is removed.\n\nThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.", |
| 702 | + "description": "ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this pod.\n\nThe template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The ResourceClaim will have a name that is generated with <pod name>-<resource name> as base and the Pod as owner. The generated name gets recorded in pod.status.resourceClaimStatuses.\n\nThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.", |
703 | 703 | "type": "string"
|
704 | 704 | }
|
705 | 705 | },
|
|
4972 | 4972 | ],
|
4973 | 4973 | "type": "object"
|
4974 | 4974 | },
|
| 4975 | + "io.k8s.api.core.v1.PodResourceClaimStatus": { |
| 4976 | + "description": "PodResourceClaimStatus is stored in the PodStatus for each PodResourceClaim which references a ResourceClaimTemplate. It stores the generated name for the corresponding ResourceClaim.", |
| 4977 | + "properties": { |
| 4978 | + "name": { |
| 4979 | + "default": "", |
| 4980 | + "description": "Name uniquely identifies this resource claim inside the pod. This must match the name of an entry in pod.spec.resourceClaims, which implies that the string must be a DNS_LABEL.", |
| 4981 | + "type": "string" |
| 4982 | + }, |
| 4983 | + "resourceClaimName": { |
| 4984 | + "default": "", |
| 4985 | + "description": "ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod.", |
| 4986 | + "type": "string" |
| 4987 | + } |
| 4988 | + }, |
| 4989 | + "required": [ |
| 4990 | + "name", |
| 4991 | + "resourceClaimName" |
| 4992 | + ], |
| 4993 | + "type": "object" |
| 4994 | + }, |
4975 | 4995 | "io.k8s.api.core.v1.PodSchedulingGate": {
|
4976 | 4996 | "description": "PodSchedulingGate is associated to a Pod to guard its scheduling.",
|
4977 | 4997 | "properties": {
|
|
5475 | 5495 | "description": "Status of resources resize desired for pod's containers. It is empty if no resources resize is pending. Any changes to container resources will automatically set this to \"Proposed\"",
|
5476 | 5496 | "type": "string"
|
5477 | 5497 | },
|
| 5498 | + "resourceClaimStatuses": { |
| 5499 | + "description": "Status of resource claims.", |
| 5500 | + "items": { |
| 5501 | + "allOf": [ |
| 5502 | + { |
| 5503 | + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodResourceClaimStatus" |
| 5504 | + } |
| 5505 | + ], |
| 5506 | + "default": {} |
| 5507 | + }, |
| 5508 | + "type": "array", |
| 5509 | + "x-kubernetes-list-map-keys": [ |
| 5510 | + "name" |
| 5511 | + ], |
| 5512 | + "x-kubernetes-list-type": "map", |
| 5513 | + "x-kubernetes-patch-merge-key": "name", |
| 5514 | + "x-kubernetes-patch-strategy": "merge,retainKeys" |
| 5515 | + }, |
5478 | 5516 | "startTime": {
|
5479 | 5517 | "allOf": [
|
5480 | 5518 | {
|
|
0 commit comments