Merge branch 'master' into patch-1

This commit is contained in:
Corentin Giraud 2023-10-17 08:54:54 +02:00 committed by GitHub
commit e39fadafff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
32 changed files with 621 additions and 425 deletions

View File

@ -1,5 +1,8 @@
blank_issues_enabled: false blank_issues_enabled: false
contact_links: contact_links:
- name: Feature requests for the gha-runner-scale-set (actions.github.com API group)
about: Feature requests associated with the actions.github.com group should be posted on the GitHub Community Support Forum
url: https://github.com/orgs/community/discussions/categories/actions
- name: Sponsor ARC Maintainers - name: Sponsor ARC Maintainers
about: If your business relies on the continued maintainance of actions-runner-controller, please consider sponsoring the project and the maintainers. about: If your business relies on the continued maintainance of actions-runner-controller, please consider sponsoring the project and the maintainers.
url: https://github.com/actions/actions-runner-controller/tree/master/CODEOWNERS url: https://github.com/actions/actions-runner-controller/tree/master/CODEOWNERS

View File

@ -0,0 +1,113 @@
name: Bug Report (actions.github.com API group)
description: File a bug report for actions.github.com API group
title: "<Please write what didn't work for you here>"
labels: ["bug", "needs triage", "gha-runner-scale-set"]
body:
- type: checkboxes
id: read-troubleshooting-guide
attributes:
label: Checks
description: Please check all the boxes below before submitting
options:
- label: I've already read https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller/troubleshooting-actions-runner-controller-errors and I'm sure my issue is not covered in the troubleshooting guide.
required: true
- label: I am using charts that are officially provided
- type: input
id: controller-version
attributes:
label: Controller Version
description: Refers to semver-like release tags for controller versions. Any release tags prefixed with `gha-runner-scale-set-` are releases associated with this API group
placeholder: ex. 0.6.1
validations:
required: true
- type: dropdown
id: deployment-method
attributes:
label: Deployment Method
description: Which deployment method did you use to install ARC?
options:
- Helm
- Kustomize
- ArgoCD
- Other
validations:
required: true
- type: checkboxes
id: checks
attributes:
label: Checks
description: Please check all the boxes below before submitting
options:
- label: This isn't a question or user support case (For Q&A and community support, go to [Discussions](https://github.com/actions/actions-runner-controller/discussions)).
required: true
- label: I've read the [Changelog](https://github.com/actions/actions-runner-controller/blob/master/docs/gha-runner-scale-set-controller/README.md#changelog) before submitting this issue and I'm sure it's not due to any recently-introduced backward-incompatible changes
required: true
- type: textarea
id: reproduction-steps
attributes:
label: To Reproduce
description: "Steps to reproduce the behavior"
render: markdown
placeholder: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true
- type: textarea
id: actual-behavior
attributes:
label: Describe the bug
description: Also tell us, what did happen?
placeholder: A clear and concise description of what happened.
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Describe the expected behavior
description: Also tell us, what did you expect to happen?
placeholder: A clear and concise description of what the expected behavior is.
validations:
required: true
- type: textarea
id: additional-context
attributes:
label: Additional Context
render: yaml
description: |
Provide `values.yaml` files that are relevant for this issue. PLEASE REDACT ANY INFORMATION THAT SHOULD NOT BE PUBLICALY AVAILABLE, LIKE GITHUB TOKEN FOR EXAMPLE.
placeholder: |
PLEASE REDACT ANY INFORMATION THAT SHOULD NOT BE PUBLICALY AVAILABLE, LIKE GITHUB TOKEN FOR EXAMPLE.
validations:
required: true
- type: textarea
id: controller-logs
attributes:
label: Controller Logs
description: "NEVER EVER OMIT THIS! Include complete logs from `actions-runner-controller`'s controller-manager pod."
render: shell
placeholder: |
PROVIDE THE LOGS VIA A GIST LINK (https://gist.github.com/), NOT DIRECTLY IN THIS TEXT AREA
To grab controller logs:
kubectl logs -n $NAMESPACE deployments/$CONTROLLER_DEPLOYMENT
validations:
required: true
- type: textarea
id: runner-pod-logs
attributes:
label: Runner Pod Logs
description: "Include logs and kubectl describe output from runner pod(s)."
render: shell
placeholder: |
PROVIDE THE WHOLE LOGS VIA A GIST LINK (https://gist.github.com/), NOT DIRECTLY IN THIS TEXT AREA
validations:
required: true

View File

@ -1,7 +1,7 @@
name: Bug Report name: Bug Report (actions.summerwind.net API group)
description: File a bug report description: File a bug report for actions.summerwind.net API group
title: "<Please write what didn't work for you here>" title: "<Please write what didn't work for you here>"
labels: ["bug", "needs triage"] labels: ["bug", "needs triage", "community"]
body: body:
- type: checkboxes - type: checkboxes
id: read-troubleshooting-guide id: read-troubleshooting-guide
@ -146,7 +146,7 @@ body:
render: shell render: shell
placeholder: | placeholder: |
PROVIDE THE LOGS VIA A GIST LINK (https://gist.github.com/), NOT DIRECTLY IN THIS TEXT AREA PROVIDE THE LOGS VIA A GIST LINK (https://gist.github.com/), NOT DIRECTLY IN THIS TEXT AREA
To grab controller logs: To grab controller logs:
# Set NS according to your setup # Set NS according to your setup
@ -166,7 +166,7 @@ body:
render: shell render: shell
placeholder: | placeholder: |
PROVIDE THE WHOLE LOGS VIA A GIST LINK (https://gist.github.com/), NOT DIRECTLY IN THIS TEXT AREA PROVIDE THE WHOLE LOGS VIA A GIST LINK (https://gist.github.com/), NOT DIRECTLY IN THIS TEXT AREA
To grab the runner pod logs: To grab the runner pod logs:
# Set NS according to your setup. It should match your RunnerDeployment's metadata.namespace. # Set NS according to your setup. It should match your RunnerDeployment's metadata.namespace.
@ -177,7 +177,7 @@ body:
kubectl -n $NS logs $POD_NAME -c runner > runnerpod_runner.log kubectl -n $NS logs $POD_NAME -c runner > runnerpod_runner.log
kubectl -n $NS logs $POD_NAME -c docker > runnerpod_docker.log kubectl -n $NS logs $POD_NAME -c docker > runnerpod_docker.log
If any of the containers are getting terminated immediately, try adding `--previous` to the kubectl-logs command to obtain logs emitted before the termination. If any of the containers are getting terminated immediately, try adding `--previous` to the kubectl-logs command to obtain logs emitted before the termination.
validations: validations:
required: true required: true

View File

@ -1,7 +1,7 @@
--- ---
name: Feature request name: Feature request (actions.summerwind.net API group)
about: Suggest an idea for this project about: Suggest an idea for this project
labels: ["enhancement", "needs triage"] labels: ["enhancement", "needs triage", "community"]
title: '' title: ''
assignees: '' assignees: ''
--- ---

View File

@ -1,2 +1,2 @@
# actions-runner-controller maintainers # actions-runner-controller maintainers
* @mumoshu @toast-gear @actions/actions-runtime @nikola-jokic * @mumoshu @toast-gear @actions/actions-launch @nikola-jokic

View File

@ -6,7 +6,7 @@ endif
DOCKER_USER ?= $(shell echo ${DOCKER_IMAGE_NAME} | cut -d / -f1) DOCKER_USER ?= $(shell echo ${DOCKER_IMAGE_NAME} | cut -d / -f1)
VERSION ?= dev VERSION ?= dev
COMMIT_SHA = $(shell git rev-parse HEAD) COMMIT_SHA = $(shell git rev-parse HEAD)
RUNNER_VERSION ?= 2.309.0 RUNNER_VERSION ?= 2.310.2
TARGETPLATFORM ?= $(shell arch) TARGETPLATFORM ?= $(shell arch)
RUNNER_NAME ?= ${DOCKER_USER}/actions-runner RUNNER_NAME ?= ${DOCKER_USER}/actions-runner
RUNNER_TAG ?= ${VERSION} RUNNER_TAG ?= ${VERSION}

View File

@ -767,7 +767,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -832,7 +832,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -915,7 +915,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1051,7 +1051,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1116,7 +1116,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1274,7 +1274,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1557,7 +1557,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1873,7 +1873,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1938,7 +1938,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2021,7 +2021,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2157,7 +2157,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2222,7 +2222,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2380,7 +2380,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2714,7 +2714,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2779,7 +2779,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2862,7 +2862,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2998,7 +2998,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3063,7 +3063,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -3221,7 +3221,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3368,7 +3368,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -3654,7 +3654,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3719,7 +3719,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3802,7 +3802,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3938,7 +3938,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -4003,7 +4003,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -4161,7 +4161,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -4741,7 +4741,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -5391,7 +5391,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -749,7 +749,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -814,7 +814,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -897,7 +897,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1033,7 +1033,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1098,7 +1098,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1256,7 +1256,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1539,7 +1539,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1855,7 +1855,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1920,7 +1920,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2003,7 +2003,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2139,7 +2139,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2204,7 +2204,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2362,7 +2362,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2696,7 +2696,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2761,7 +2761,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2844,7 +2844,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2980,7 +2980,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3045,7 +3045,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -3203,7 +3203,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3350,7 +3350,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -3636,7 +3636,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3701,7 +3701,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3784,7 +3784,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3920,7 +3920,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3985,7 +3985,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -4143,7 +4143,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -4723,7 +4723,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -5373,7 +5373,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -701,7 +701,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -766,7 +766,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -849,7 +849,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -985,7 +985,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1050,7 +1050,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1208,7 +1208,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1491,7 +1491,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1807,7 +1807,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1872,7 +1872,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1955,7 +1955,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2091,7 +2091,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2156,7 +2156,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2314,7 +2314,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2648,7 +2648,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2713,7 +2713,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2796,7 +2796,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2932,7 +2932,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2997,7 +2997,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -3155,7 +3155,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3302,7 +3302,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -3588,7 +3588,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3653,7 +3653,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3736,7 +3736,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3872,7 +3872,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3937,7 +3937,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -4095,7 +4095,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -4675,7 +4675,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -5325,7 +5325,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -836,7 +836,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -901,7 +901,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -984,7 +984,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1120,7 +1120,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1185,7 +1185,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1343,7 +1343,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1666,7 +1666,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1731,7 +1731,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1814,7 +1814,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1950,7 +1950,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2015,7 +2015,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2173,7 +2173,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2508,7 +2508,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2573,7 +2573,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2656,7 +2656,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2792,7 +2792,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2857,7 +2857,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -3015,7 +3015,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3769,7 +3769,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -4511,7 +4511,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -4666,7 +4666,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -796,7 +796,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -861,7 +861,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -944,7 +944,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1080,7 +1080,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1145,7 +1145,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1306,7 +1306,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1629,7 +1629,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1694,7 +1694,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1777,7 +1777,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1913,7 +1913,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1978,7 +1978,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2139,7 +2139,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2474,7 +2474,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2539,7 +2539,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2622,7 +2622,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2758,7 +2758,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2823,7 +2823,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2984,7 +2984,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3738,7 +3738,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -754,7 +754,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -819,7 +819,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -902,7 +902,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1038,7 +1038,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1103,7 +1103,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1264,7 +1264,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1587,7 +1587,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1652,7 +1652,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1735,7 +1735,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1871,7 +1871,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1936,7 +1936,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2097,7 +2097,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2432,7 +2432,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2497,7 +2497,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2580,7 +2580,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2716,7 +2716,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2781,7 +2781,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2942,7 +2942,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3696,7 +3696,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -5043,7 +5043,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -5108,7 +5108,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -5191,7 +5191,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -5327,7 +5327,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -5392,7 +5392,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -5550,7 +5550,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -5873,7 +5873,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -5938,7 +5938,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -6021,7 +6021,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -6157,7 +6157,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -6222,7 +6222,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -6380,7 +6380,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -6715,7 +6715,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -6780,7 +6780,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -6863,7 +6863,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -6999,7 +6999,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -7064,7 +7064,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -7222,7 +7222,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -7976,7 +7976,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -779,7 +779,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -844,7 +844,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -927,7 +927,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1063,7 +1063,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1128,7 +1128,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1286,7 +1286,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1609,7 +1609,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1674,7 +1674,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1757,7 +1757,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1893,7 +1893,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1958,7 +1958,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2116,7 +2116,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2451,7 +2451,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2516,7 +2516,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2599,7 +2599,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2735,7 +2735,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2800,7 +2800,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2958,7 +2958,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3712,7 +3712,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -773,7 +773,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -838,7 +838,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -921,7 +921,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1057,7 +1057,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1122,7 +1122,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1280,7 +1280,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1603,7 +1603,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1668,7 +1668,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1751,7 +1751,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1887,7 +1887,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1952,7 +1952,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2110,7 +2110,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2445,7 +2445,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2510,7 +2510,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2593,7 +2593,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2729,7 +2729,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2794,7 +2794,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2952,7 +2952,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3706,7 +3706,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -27,6 +27,9 @@ spec:
app.kubernetes.io/component: controller-manager app.kubernetes.io/component: controller-manager
app.kubernetes.io/version: {{ .Chart.Version }} app.kubernetes.io/version: {{ .Chart.Version }}
{{- include "gha-runner-scale-set-controller.selectorLabels" . | nindent 8 }} {{- include "gha-runner-scale-set-controller.selectorLabels" . | nindent 8 }}
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec: spec:
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:

View File

@ -41,6 +41,8 @@ serviceAccount:
podAnnotations: {} podAnnotations: {}
podLabels: {}
podSecurityContext: {} podSecurityContext: {}
# fsGroup: 2000 # fsGroup: 2000

View File

@ -796,7 +796,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -861,7 +861,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -944,7 +944,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1080,7 +1080,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1145,7 +1145,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1306,7 +1306,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1629,7 +1629,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1694,7 +1694,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1777,7 +1777,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1913,7 +1913,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1978,7 +1978,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2139,7 +2139,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2474,7 +2474,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2539,7 +2539,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2622,7 +2622,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2758,7 +2758,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2823,7 +2823,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2984,7 +2984,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3738,7 +3738,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -754,7 +754,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -819,7 +819,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -902,7 +902,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1038,7 +1038,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1103,7 +1103,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1264,7 +1264,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1587,7 +1587,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1652,7 +1652,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1735,7 +1735,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1871,7 +1871,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1936,7 +1936,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2097,7 +2097,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2432,7 +2432,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2497,7 +2497,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2580,7 +2580,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2716,7 +2716,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2781,7 +2781,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2942,7 +2942,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3696,7 +3696,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -5043,7 +5043,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -5108,7 +5108,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -5191,7 +5191,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -5327,7 +5327,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -5392,7 +5392,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -5550,7 +5550,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -5873,7 +5873,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -5938,7 +5938,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -6021,7 +6021,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -6157,7 +6157,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -6222,7 +6222,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -6380,7 +6380,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -6715,7 +6715,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -6780,7 +6780,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -6863,7 +6863,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -6999,7 +6999,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -7064,7 +7064,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -7222,7 +7222,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -7976,7 +7976,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -779,7 +779,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -844,7 +844,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -927,7 +927,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1063,7 +1063,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1128,7 +1128,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1286,7 +1286,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1609,7 +1609,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1674,7 +1674,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1757,7 +1757,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1893,7 +1893,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1958,7 +1958,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2116,7 +2116,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2451,7 +2451,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2516,7 +2516,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2599,7 +2599,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2735,7 +2735,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2800,7 +2800,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2958,7 +2958,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3712,7 +3712,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -773,7 +773,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -838,7 +838,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -921,7 +921,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1057,7 +1057,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1122,7 +1122,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1280,7 +1280,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1603,7 +1603,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1668,7 +1668,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1751,7 +1751,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1887,7 +1887,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1952,7 +1952,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2110,7 +2110,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2445,7 +2445,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2510,7 +2510,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2593,7 +2593,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2729,7 +2729,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2794,7 +2794,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2952,7 +2952,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3706,7 +3706,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -767,7 +767,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -832,7 +832,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -915,7 +915,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1051,7 +1051,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1116,7 +1116,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1274,7 +1274,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1557,7 +1557,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1873,7 +1873,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1938,7 +1938,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2021,7 +2021,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2157,7 +2157,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2222,7 +2222,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2380,7 +2380,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2714,7 +2714,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2779,7 +2779,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2862,7 +2862,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2998,7 +2998,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3063,7 +3063,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -3221,7 +3221,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3368,7 +3368,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -3654,7 +3654,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3719,7 +3719,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3802,7 +3802,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3938,7 +3938,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -4003,7 +4003,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -4161,7 +4161,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -4741,7 +4741,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -5391,7 +5391,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -749,7 +749,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -814,7 +814,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -897,7 +897,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1033,7 +1033,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1098,7 +1098,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1256,7 +1256,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1539,7 +1539,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1855,7 +1855,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1920,7 +1920,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2003,7 +2003,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2139,7 +2139,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2204,7 +2204,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2362,7 +2362,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2696,7 +2696,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2761,7 +2761,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2844,7 +2844,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2980,7 +2980,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3045,7 +3045,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -3203,7 +3203,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3350,7 +3350,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -3636,7 +3636,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3701,7 +3701,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3784,7 +3784,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3920,7 +3920,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3985,7 +3985,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -4143,7 +4143,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -4723,7 +4723,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -5373,7 +5373,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -701,7 +701,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -766,7 +766,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -849,7 +849,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -985,7 +985,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1050,7 +1050,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1208,7 +1208,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1491,7 +1491,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1807,7 +1807,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1872,7 +1872,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1955,7 +1955,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2091,7 +2091,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2156,7 +2156,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2314,7 +2314,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2648,7 +2648,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2713,7 +2713,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2796,7 +2796,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2932,7 +2932,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2997,7 +2997,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -3155,7 +3155,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3302,7 +3302,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -3588,7 +3588,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3653,7 +3653,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3736,7 +3736,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3872,7 +3872,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3937,7 +3937,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -4095,7 +4095,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -4675,7 +4675,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -5325,7 +5325,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -836,7 +836,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -901,7 +901,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -984,7 +984,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1120,7 +1120,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1185,7 +1185,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -1343,7 +1343,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1666,7 +1666,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1731,7 +1731,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1814,7 +1814,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -1950,7 +1950,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2015,7 +2015,7 @@ spec:
description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod. description: Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -2173,7 +2173,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2508,7 +2508,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2573,7 +2573,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2656,7 +2656,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2792,7 +2792,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -2857,7 +2857,7 @@ spec:
description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -3015,7 +3015,7 @@ spec:
description: HTTPHeader describes a custom header to be used in HTTP probes description: HTTPHeader describes a custom header to be used in HTTP probes
properties: properties:
name: name:
description: The header field name description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
type: string type: string
value: value:
description: The header field value description: The header field value
@ -3769,7 +3769,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -4511,7 +4511,7 @@ spec:
description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' description: 'resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources'
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:
@ -4666,7 +4666,7 @@ spec:
description: ResourceRequirements describes the compute resource requirements. description: ResourceRequirements describes the compute resource requirements.
properties: properties:
claims: claims:
description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable." description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers."
items: items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims. description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties: properties:

View File

@ -306,6 +306,38 @@ func (r *AutoscalingListenerReconciler) cleanupResources(ctx context.Context, au
logger.Info("Listener proxy secret is deleted") logger.Info("Listener proxy secret is deleted")
} }
listenerRoleBinding := new(rbacv1.RoleBinding)
err = r.Get(ctx, types.NamespacedName{Namespace: autoscalingListener.Spec.AutoscalingRunnerSetNamespace, Name: scaleSetListenerRoleName(autoscalingListener)}, listenerRoleBinding)
switch {
case err == nil:
if listenerRoleBinding.ObjectMeta.DeletionTimestamp.IsZero() {
logger.Info("Deleting the listener role binding")
if err := r.Delete(ctx, listenerRoleBinding); err != nil {
return false, fmt.Errorf("failed to delete listener role binding: %v", err)
}
}
return false, nil
case err != nil && !kerrors.IsNotFound(err):
return false, fmt.Errorf("failed to get listener role binding: %v", err)
}
logger.Info("Listener role binding is deleted")
listenerRole := new(rbacv1.Role)
err = r.Get(ctx, types.NamespacedName{Namespace: autoscalingListener.Spec.AutoscalingRunnerSetNamespace, Name: scaleSetListenerRoleName(autoscalingListener)}, listenerRole)
switch {
case err == nil:
if listenerRole.ObjectMeta.DeletionTimestamp.IsZero() {
logger.Info("Deleting the listener role")
if err := r.Delete(ctx, listenerRole); err != nil {
return false, fmt.Errorf("failed to delete listener role: %v", err)
}
}
return false, nil
case err != nil && !kerrors.IsNotFound(err):
return false, fmt.Errorf("failed to get listener role: %v", err)
}
logger.Info("Listener role is deleted")
logger.Info("Cleaning up the listener service account") logger.Info("Cleaning up the listener service account")
listenerSa := new(corev1.ServiceAccount) listenerSa := new(corev1.ServiceAccount)
err = r.Get(ctx, types.NamespacedName{Name: scaleSetListenerServiceAccountName(autoscalingListener), Namespace: autoscalingListener.Namespace}, listenerSa) err = r.Get(ctx, types.NamespacedName{Name: scaleSetListenerServiceAccountName(autoscalingListener), Namespace: autoscalingListener.Namespace}, listenerSa)

View File

@ -203,7 +203,8 @@ var _ = Describe("Test AutoScalingListener controller", func() {
return pod.Name, nil return pod.Name, nil
}, },
autoscalingListenerTestTimeout, autoscalingListenerTestTimeout,
autoscalingListenerTestInterval).Should(BeEquivalentTo(autoscalingListener.Name), "Pod should be created") autoscalingListenerTestInterval,
).Should(BeEquivalentTo(autoscalingListener.Name), "Pod should be created")
// Delete the AutoScalingListener // Delete the AutoScalingListener
err := k8sClient.Delete(ctx, autoscalingListener) err := k8sClient.Delete(ctx, autoscalingListener)
@ -225,7 +226,30 @@ var _ = Describe("Test AutoScalingListener controller", func() {
return nil return nil
}, },
autoscalingListenerTestTimeout, autoscalingListenerTestTimeout,
autoscalingListenerTestInterval).ShouldNot(Succeed(), "failed to delete pod") autoscalingListenerTestInterval,
).ShouldNot(Succeed(), "failed to delete pod")
// Cleanup the listener role binding
Eventually(
func() bool {
roleBinding := new(rbacv1.RoleBinding)
err := k8sClient.Get(ctx, client.ObjectKey{Name: scaleSetListenerRoleName(autoscalingListener), Namespace: autoscalingListener.Spec.AutoscalingRunnerSetNamespace}, roleBinding)
return kerrors.IsNotFound(err)
},
autoscalingListenerTestTimeout,
autoscalingListenerTestInterval,
).Should(BeTrue(), "failed to delete role binding")
// Cleanup the listener role
Eventually(
func() bool {
role := new(rbacv1.Role)
err := k8sClient.Get(ctx, client.ObjectKey{Name: scaleSetListenerRoleName(autoscalingListener), Namespace: autoscalingListener.Spec.AutoscalingRunnerSetNamespace}, role)
return kerrors.IsNotFound(err)
},
autoscalingListenerTestTimeout,
autoscalingListenerTestInterval,
).Should(BeTrue(), "failed to delete role")
// Cleanup the listener service account // Cleanup the listener service account
Eventually( Eventually(

6
go.mod
View File

@ -30,9 +30,9 @@ require (
golang.org/x/sync v0.2.0 golang.org/x/sync v0.2.0
gomodules.xyz/jsonpatch/v2 v2.2.0 gomodules.xyz/jsonpatch/v2 v2.2.0
gopkg.in/yaml.v2 v2.4.0 gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.26.2 k8s.io/api v0.26.9
k8s.io/apimachinery v0.26.2 k8s.io/apimachinery v0.26.9
k8s.io/client-go v0.26.2 k8s.io/client-go v0.26.9
sigs.k8s.io/controller-runtime v0.14.4 sigs.k8s.io/controller-runtime v0.14.4
sigs.k8s.io/yaml v1.3.0 sigs.k8s.io/yaml v1.3.0
) )

12
go.sum
View File

@ -395,14 +395,14 @@ gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
k8s.io/api v0.26.2 h1:dM3cinp3PGB6asOySalOZxEG4CZ0IAdJsrYZXE/ovGQ= k8s.io/api v0.26.9 h1:s8Y+G1u2JM55b90+Yo2RVb3PGT/hkWNVPN4idPERxJg=
k8s.io/api v0.26.2/go.mod h1:1kjMQsFE+QHPfskEcVNgL3+Hp88B80uj0QtSOlj8itU= k8s.io/api v0.26.9/go.mod h1:W/W4fEWRVzPD36820LlVUQfNBiSbiq0VPWRFJKwzmUg=
k8s.io/apiextensions-apiserver v0.26.1 h1:cB8h1SRk6e/+i3NOrQgSFij1B2S0Y0wDoNl66bn8RMI= k8s.io/apiextensions-apiserver v0.26.1 h1:cB8h1SRk6e/+i3NOrQgSFij1B2S0Y0wDoNl66bn8RMI=
k8s.io/apiextensions-apiserver v0.26.1/go.mod h1:AptjOSXDGuE0JICx/Em15PaoO7buLwTs0dGleIHixSM= k8s.io/apiextensions-apiserver v0.26.1/go.mod h1:AptjOSXDGuE0JICx/Em15PaoO7buLwTs0dGleIHixSM=
k8s.io/apimachinery v0.26.2 h1:da1u3D5wfR5u2RpLhE/ZtZS2P7QvDgLZTi9wrNZl/tQ= k8s.io/apimachinery v0.26.9 h1:5yAV9cFR7Z4gIorKcAjWnx4uxtxiFsERwq4Pvmx0CCg=
k8s.io/apimachinery v0.26.2/go.mod h1:ats7nN1LExKHvJ9TmwootT00Yz05MuYqPXEXaVeOy5I= k8s.io/apimachinery v0.26.9/go.mod h1:qYzLkrQ9lhrZRh0jNKo2cfvf/R1/kQONnSiyB7NUJU0=
k8s.io/client-go v0.26.2 h1:s1WkVujHX3kTp4Zn4yGNFK+dlDXy1bAAkIl+cFAiuYI= k8s.io/client-go v0.26.9 h1:TGWi/6guEjIgT0Hg871Gsmx0qFuoGyGFjlFedrk7It0=
k8s.io/client-go v0.26.2/go.mod h1:u5EjOuSyBa09yqqyY7m3abZeovO/7D/WehVVlZ2qcqU= k8s.io/client-go v0.26.9/go.mod h1:tU1FZS0bwAmAFyPYpZycUQrQnUMzQ5MHloop7EbX6ow=
k8s.io/component-base v0.26.1 h1:4ahudpeQXHZL5kko+iDHqLj/FSGAEUnSVO0EBbgDd+4= k8s.io/component-base v0.26.1 h1:4ahudpeQXHZL5kko+iDHqLj/FSGAEUnSVO0EBbgDd+4=
k8s.io/component-base v0.26.1/go.mod h1:VHrLR0b58oC035w6YQiBSbtsf0ThuSwXP+p5dD/kAWU= k8s.io/component-base v0.26.1/go.mod h1:VHrLR0b58oC035w6YQiBSbtsf0ThuSwXP+p5dD/kAWU=
k8s.io/klog/v2 v2.80.1 h1:atnLQ121W371wYYFawwYx1aEY2eUfs4l3J72wtgAwV4= k8s.io/klog/v2 v2.80.1 h1:atnLQ121W371wYYFawwYx1aEY2eUfs4l3J72wtgAwV4=

View File

@ -6,7 +6,7 @@ DIND_ROOTLESS_RUNNER_NAME ?= ${DOCKER_USER}/actions-runner-dind-rootless
OS_IMAGE ?= ubuntu-22.04 OS_IMAGE ?= ubuntu-22.04
TARGETPLATFORM ?= $(shell arch) TARGETPLATFORM ?= $(shell arch)
RUNNER_VERSION ?= 2.309.0 RUNNER_VERSION ?= 2.310.2
RUNNER_CONTAINER_HOOKS_VERSION ?= 0.4.0 RUNNER_CONTAINER_HOOKS_VERSION ?= 0.4.0
DOCKER_VERSION ?= 20.10.23 DOCKER_VERSION ?= 20.10.23

View File

@ -1,2 +1,2 @@
RUNNER_VERSION=2.309.0 RUNNER_VERSION=2.310.2
RUNNER_CONTAINER_HOOKS_VERSION=0.4.0 RUNNER_CONTAINER_HOOKS_VERSION=0.4.0

View File

@ -36,7 +36,8 @@ var (
testResultCMNamePrefix = "test-result-" testResultCMNamePrefix = "test-result-"
RunnerVersion = "2.309.0" RunnerVersion = "2.310.2"
RunnerContainerHooksVersion = "0.4.0"
) )
// If you're willing to run this test via VS Code "run test" or "debug test", // If you're willing to run this test via VS Code "run test" or "debug test",
@ -496,6 +497,10 @@ func buildVars(repo, ubuntuVer string) vars {
Name: "RUNNER_VERSION", Name: "RUNNER_VERSION",
Value: RunnerVersion, Value: RunnerVersion,
}, },
{
Name: "RUNNER_CONTAINER_HOOKS_VERSION",
Value: RunnerContainerHooksVersion,
},
}, },
Image: runnerImage, Image: runnerImage,
EnableBuildX: true, EnableBuildX: true,
@ -507,6 +512,10 @@ func buildVars(repo, ubuntuVer string) vars {
Name: "RUNNER_VERSION", Name: "RUNNER_VERSION",
Value: RunnerVersion, Value: RunnerVersion,
}, },
{
Name: "RUNNER_CONTAINER_HOOKS_VERSION",
Value: RunnerContainerHooksVersion,
},
}, },
Image: runnerDindImage, Image: runnerDindImage,
EnableBuildX: true, EnableBuildX: true,
@ -518,6 +527,10 @@ func buildVars(repo, ubuntuVer string) vars {
Name: "RUNNER_VERSION", Name: "RUNNER_VERSION",
Value: RunnerVersion, Value: RunnerVersion,
}, },
{
Name: "RUNNER_CONTAINER_HOOKS_VERSION",
Value: RunnerContainerHooksVersion,
},
}, },
Image: runnerRootlessDindImage, Image: runnerRootlessDindImage,
EnableBuildX: true, EnableBuildX: true,

View File

@ -21,6 +21,9 @@ var images = map[string]string{
"1.22": "kindest/node:v1.22.9@sha256:8135260b959dfe320206eb36b3aeda9cffcb262f4b44cda6b33f7bb73f453105", "1.22": "kindest/node:v1.22.9@sha256:8135260b959dfe320206eb36b3aeda9cffcb262f4b44cda6b33f7bb73f453105",
"1.23": "kindest/node:v1.23.6@sha256:b1fa224cc6c7ff32455e0b1fd9cbfd3d3bc87ecaa8fcb06961ed1afb3db0f9ae", "1.23": "kindest/node:v1.23.6@sha256:b1fa224cc6c7ff32455e0b1fd9cbfd3d3bc87ecaa8fcb06961ed1afb3db0f9ae",
"1.24": "kindest/node:v1.24.0@sha256:0866296e693efe1fed79d5e6c7af8df71fc73ae45e3679af05342239cdc5bc8e", "1.24": "kindest/node:v1.24.0@sha256:0866296e693efe1fed79d5e6c7af8df71fc73ae45e3679af05342239cdc5bc8e",
"1.25": "kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8",
"1.26": "kindest/node:v1.26.6@sha256:6e2d8b28a5b601defe327b98bd1c2d1930b49e5d8c512e1895099e4504007adb",
"1.27": "kindest/node:v1.27.3@sha256:3966ac761ae0136263ffdb6cfd4db23ef8a83cba8a463690e98317add2c9ba72",
} }
func Img(repo, tag string) ContainerImage { func Img(repo, tag string) ContainerImage {
@ -335,7 +338,10 @@ func (k *Kind) Start(ctx context.Context, k8sMinorVer string) error {
return err return err
} }
image := images[k8sMinorVer] image, ok := images[k8sMinorVer]
if !ok {
return fmt.Errorf("no kind image found for k8s minor version %q", k8sMinorVer)
}
kindConfig := []byte(fmt.Sprintf(`kind: Cluster kindConfig := []byte(fmt.Sprintf(`kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4 apiVersion: kind.x-k8s.io/v1alpha4