PodResourceClaimV1 Class

Definition

Represents a resource claim specification for a Kubernetes pod.

[YamlDotNet.Serialization.YamlSerializable]
public sealed class PodResourceClaimV1
[<YamlDotNet.Serialization.YamlSerializable>]
type PodResourceClaimV1 = class
Public NotInheritable Class PodResourceClaimV1
Inheritance
PodResourceClaimV1
Attributes
YamlDotNet.Serialization.YamlSerializableAttribute

Remarks

This class is used to define a claim for resources that a Kubernetes pod requires. It specifies the claim's name, the direct reference to an existing resource claim, or the template from which a resource claim can be created when none exists.

Constructors

PodResourceClaimV1()

Properties

Name

Gets or sets the name of the resource claim associated with the Pod. This property represents the alias "name" in the serialized YAML format.

ResourceClaimName

Gets or sets the name of the referenced resource claim associated with the pod. This is used to identify the resource claim that provides specific resources to the pod in a Kubernetes environment.

ResourceClaimTemplateName

Gets or sets the name of the resource claim template associated with the pod. This property specifies the template to be used for creating a resource claim dynamically, enabling resource allocation for the pod.

Applies to