1. Packages
  2. Packages
  3. Kubernetes
  4. API Docs
  5. scheduling
  6. scheduling/v1alpha2
  7. PodGroupPatch
Viewing docs for Kubernetes v4.30.0
published on Friday, Apr 24, 2026 by Pulumi
kubernetes logo
Viewing docs for Kubernetes v4.30.0
published on Friday, Apr 24, 2026 by Pulumi

    Patch resources are used to modify existing Kubernetes resources by using Server-Side Apply updates. The name of the resource must be specified, but all other properties are optional. More than one patch may be applied to the same resource, and a random FieldManager name will be used for each Patch resource. Conflicts will result in an error by default, but can be forced using the “pulumi.com/patchForce” annotation. See the Server-Side Apply Docs for additional information about using Server-Side Apply to manage Kubernetes resources with Pulumi. PodGroup represents a runtime instance of pods grouped together. PodGroups are created by workload controllers (Job, LWS, JobSet, etc…) from Workload.podGroupTemplates. PodGroup API enablement is toggled by the GenericWorkload feature gate.

    Create PodGroupPatch Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PodGroupPatch(name: string, args?: PodGroupPatch, opts?: CustomResourceOptions);
    @overload
    def PodGroupPatch(resource_name: str,
                      args: Optional[PodGroupPatchArgs] = None,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def PodGroupPatch(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      metadata: Optional[_meta.v1.ObjectMetaPatchArgs] = None,
                      spec: Optional[PodGroupSpecPatchArgs] = None)
    func NewPodGroupPatch(ctx *Context, name string, args *PodGroupPatchArgs, opts ...ResourceOption) (*PodGroupPatch, error)
    public PodGroupPatch(string name, PodGroupPatchArgs? args = null, CustomResourceOptions? opts = null)
    public PodGroupPatch(String name, PodGroupPatchArgs args)
    public PodGroupPatch(String name, PodGroupPatchArgs args, CustomResourceOptions options)
    
    type: kubernetes:scheduling.k8s.io/v1alpha2:PodGroupPatch
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PodGroupPatch
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args PodGroupPatchArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args PodGroupPatchArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PodGroupPatchArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PodGroupPatchArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var podGroupPatchResource = new Kubernetes.Scheduling.V1Alpha2.PodGroupPatch("podGroupPatchResource", new()
    {
        ApiVersion = "string",
        Kind = "string",
        Metadata = new Kubernetes.Types.Inputs.Meta.V1.ObjectMetaPatchArgs
        {
            Annotations = 
            {
                { "string", "string" },
            },
            ClusterName = "string",
            CreationTimestamp = "string",
            DeletionGracePeriodSeconds = 0,
            DeletionTimestamp = "string",
            Finalizers = new[]
            {
                "string",
            },
            GenerateName = "string",
            Generation = 0,
            Labels = 
            {
                { "string", "string" },
            },
            ManagedFields = new[]
            {
                new Kubernetes.Types.Inputs.Meta.V1.ManagedFieldsEntryPatchArgs
                {
                    ApiVersion = "string",
                    FieldsType = "string",
                    FieldsV1 = "{}",
                    Manager = "string",
                    Operation = "string",
                    Subresource = "string",
                    Time = "string",
                },
            },
            Name = "string",
            Namespace = "string",
            OwnerReferences = new[]
            {
                new Kubernetes.Types.Inputs.Meta.V1.OwnerReferencePatchArgs
                {
                    ApiVersion = "string",
                    BlockOwnerDeletion = false,
                    Controller = false,
                    Kind = "string",
                    Name = "string",
                    Uid = "string",
                },
            },
            ResourceVersion = "string",
            SelfLink = "string",
            Uid = "string",
        },
        Spec = new Kubernetes.Types.Inputs.Scheduling.V1Alpha2.PodGroupSpecPatchArgs
        {
            DisruptionMode = "string",
            PodGroupTemplateRef = new Kubernetes.Types.Inputs.Scheduling.V1Alpha2.PodGroupTemplateReferencePatchArgs
            {
                Workload = new Kubernetes.Types.Inputs.Scheduling.V1Alpha2.WorkloadPodGroupTemplateReferencePatchArgs
                {
                    PodGroupTemplateName = "string",
                    WorkloadName = "string",
                },
            },
            Priority = 0,
            PriorityClassName = "string",
            ResourceClaims = new[]
            {
                new Kubernetes.Types.Inputs.Scheduling.V1Alpha2.PodGroupResourceClaimPatchArgs
                {
                    Name = "string",
                    ResourceClaimName = "string",
                    ResourceClaimTemplateName = "string",
                },
            },
            SchedulingConstraints = new Kubernetes.Types.Inputs.Scheduling.V1Alpha2.PodGroupSchedulingConstraintsPatchArgs
            {
                Topology = new[]
                {
                    new Kubernetes.Types.Inputs.Scheduling.V1Alpha2.TopologyConstraintPatchArgs
                    {
                        Key = "string",
                    },
                },
            },
            SchedulingPolicy = new Kubernetes.Types.Inputs.Scheduling.V1Alpha2.PodGroupSchedulingPolicyPatchArgs
            {
                Basic = null,
                Gang = new Kubernetes.Types.Inputs.Scheduling.V1Alpha2.GangSchedulingPolicyPatchArgs
                {
                    MinCount = 0,
                },
            },
        },
    });
    
    example, err := schedulingv1alpha2.NewPodGroupPatch(ctx, "podGroupPatchResource", &schedulingv1alpha2.PodGroupPatchArgs{
    	ApiVersion: pulumi.String("string"),
    	Kind:       pulumi.String("string"),
    	Metadata: &metav1.ObjectMetaPatchArgs{
    		Annotations: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		ClusterName:                pulumi.String("string"),
    		CreationTimestamp:          pulumi.String("string"),
    		DeletionGracePeriodSeconds: pulumi.Int(0),
    		DeletionTimestamp:          pulumi.String("string"),
    		Finalizers: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		GenerateName: pulumi.String("string"),
    		Generation:   pulumi.Int(0),
    		Labels: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		ManagedFields: metav1.ManagedFieldsEntryPatchArray{
    			&metav1.ManagedFieldsEntryPatchArgs{
    				ApiVersion:  pulumi.String("string"),
    				FieldsType:  pulumi.String("string"),
    				FieldsV1:    pulumi.Any("{}"),
    				Manager:     pulumi.String("string"),
    				Operation:   pulumi.String("string"),
    				Subresource: pulumi.String("string"),
    				Time:        pulumi.String("string"),
    			},
    		},
    		Name:      pulumi.String("string"),
    		Namespace: pulumi.String("string"),
    		OwnerReferences: metav1.OwnerReferencePatchArray{
    			&metav1.OwnerReferencePatchArgs{
    				ApiVersion:         pulumi.String("string"),
    				BlockOwnerDeletion: pulumi.Bool(false),
    				Controller:         pulumi.Bool(false),
    				Kind:               pulumi.String("string"),
    				Name:               pulumi.String("string"),
    				Uid:                pulumi.String("string"),
    			},
    		},
    		ResourceVersion: pulumi.String("string"),
    		SelfLink:        pulumi.String("string"),
    		Uid:             pulumi.String("string"),
    	},
    	Spec: &schedulingv1alpha2.PodGroupSpecPatchArgs{
    		DisruptionMode: pulumi.String("string"),
    		PodGroupTemplateRef: &schedulingv1alpha2.PodGroupTemplateReferencePatchArgs{
    			Workload: &schedulingv1alpha2.WorkloadPodGroupTemplateReferencePatchArgs{
    				PodGroupTemplateName: pulumi.String("string"),
    				WorkloadName:         pulumi.String("string"),
    			},
    		},
    		Priority:          pulumi.Int(0),
    		PriorityClassName: pulumi.String("string"),
    		ResourceClaims: schedulingv1alpha2.PodGroupResourceClaimPatchArray{
    			&schedulingv1alpha2.PodGroupResourceClaimPatchArgs{
    				Name:                      pulumi.String("string"),
    				ResourceClaimName:         pulumi.String("string"),
    				ResourceClaimTemplateName: pulumi.String("string"),
    			},
    		},
    		SchedulingConstraints: &schedulingv1alpha2.PodGroupSchedulingConstraintsPatchArgs{
    			Topology: schedulingv1alpha2.TopologyConstraintPatchArray{
    				&schedulingv1alpha2.TopologyConstraintPatchArgs{
    					Key: pulumi.String("string"),
    				},
    			},
    		},
    		SchedulingPolicy: &schedulingv1alpha2.PodGroupSchedulingPolicyPatchArgs{
    			Basic: &schedulingv1alpha2.BasicSchedulingPolicyPatchArgs{},
    			Gang: &schedulingv1alpha2.GangSchedulingPolicyPatchArgs{
    				MinCount: pulumi.Int(0),
    			},
    		},
    	},
    })
    
    var podGroupPatchResource = new PodGroupPatch("podGroupPatchResource", PodGroupPatchArgs.builder()
        .apiVersion("string")
        .kind("string")
        .metadata(ObjectMetaPatchArgs.builder()
            .annotations(Map.of("string", "string"))
            .clusterName("string")
            .creationTimestamp("string")
            .deletionGracePeriodSeconds(0)
            .deletionTimestamp("string")
            .finalizers("string")
            .generateName("string")
            .generation(0)
            .labels(Map.of("string", "string"))
            .managedFields(ManagedFieldsEntryPatchArgs.builder()
                .apiVersion("string")
                .fieldsType("string")
                .fieldsV1("{}")
                .manager("string")
                .operation("string")
                .subresource("string")
                .time("string")
                .build())
            .name("string")
            .namespace("string")
            .ownerReferences(OwnerReferencePatchArgs.builder()
                .apiVersion("string")
                .blockOwnerDeletion(false)
                .controller(false)
                .kind("string")
                .name("string")
                .uid("string")
                .build())
            .resourceVersion("string")
            .selfLink("string")
            .uid("string")
            .build())
        .spec(PodGroupSpecPatchArgs.builder()
            .disruptionMode("string")
            .podGroupTemplateRef(PodGroupTemplateReferencePatchArgs.builder()
                .workload(WorkloadPodGroupTemplateReferencePatchArgs.builder()
                    .podGroupTemplateName("string")
                    .workloadName("string")
                    .build())
                .build())
            .priority(0)
            .priorityClassName("string")
            .resourceClaims(PodGroupResourceClaimPatchArgs.builder()
                .name("string")
                .resourceClaimName("string")
                .resourceClaimTemplateName("string")
                .build())
            .schedulingConstraints(PodGroupSchedulingConstraintsPatchArgs.builder()
                .topology(TopologyConstraintPatchArgs.builder()
                    .key("string")
                    .build())
                .build())
            .schedulingPolicy(PodGroupSchedulingPolicyPatchArgs.builder()
                .basic(BasicSchedulingPolicyPatchArgs.builder()
                    .build())
                .gang(GangSchedulingPolicyPatchArgs.builder()
                    .minCount(0)
                    .build())
                .build())
            .build())
        .build());
    
    pod_group_patch_resource = kubernetes.scheduling.v1alpha2.PodGroupPatch("podGroupPatchResource",
        api_version="string",
        kind="string",
        metadata={
            "annotations": {
                "string": "string",
            },
            "cluster_name": "string",
            "creation_timestamp": "string",
            "deletion_grace_period_seconds": 0,
            "deletion_timestamp": "string",
            "finalizers": ["string"],
            "generate_name": "string",
            "generation": 0,
            "labels": {
                "string": "string",
            },
            "managed_fields": [{
                "api_version": "string",
                "fields_type": "string",
                "fields_v1": "{}",
                "manager": "string",
                "operation": "string",
                "subresource": "string",
                "time": "string",
            }],
            "name": "string",
            "namespace": "string",
            "owner_references": [{
                "api_version": "string",
                "block_owner_deletion": False,
                "controller": False,
                "kind": "string",
                "name": "string",
                "uid": "string",
            }],
            "resource_version": "string",
            "self_link": "string",
            "uid": "string",
        },
        spec={
            "disruption_mode": "string",
            "pod_group_template_ref": {
                "workload": {
                    "pod_group_template_name": "string",
                    "workload_name": "string",
                },
            },
            "priority": 0,
            "priority_class_name": "string",
            "resource_claims": [{
                "name": "string",
                "resource_claim_name": "string",
                "resource_claim_template_name": "string",
            }],
            "scheduling_constraints": {
                "topology": [{
                    "key": "string",
                }],
            },
            "scheduling_policy": {
                "basic": {},
                "gang": {
                    "min_count": 0,
                },
            },
        })
    
    const podGroupPatchResource = new kubernetes.scheduling.v1alpha2.PodGroupPatch("podGroupPatchResource", {
        apiVersion: "string",
        kind: "string",
        metadata: {
            annotations: {
                string: "string",
            },
            clusterName: "string",
            creationTimestamp: "string",
            deletionGracePeriodSeconds: 0,
            deletionTimestamp: "string",
            finalizers: ["string"],
            generateName: "string",
            generation: 0,
            labels: {
                string: "string",
            },
            managedFields: [{
                apiVersion: "string",
                fieldsType: "string",
                fieldsV1: "{}",
                manager: "string",
                operation: "string",
                subresource: "string",
                time: "string",
            }],
            name: "string",
            namespace: "string",
            ownerReferences: [{
                apiVersion: "string",
                blockOwnerDeletion: false,
                controller: false,
                kind: "string",
                name: "string",
                uid: "string",
            }],
            resourceVersion: "string",
            selfLink: "string",
            uid: "string",
        },
        spec: {
            disruptionMode: "string",
            podGroupTemplateRef: {
                workload: {
                    podGroupTemplateName: "string",
                    workloadName: "string",
                },
            },
            priority: 0,
            priorityClassName: "string",
            resourceClaims: [{
                name: "string",
                resourceClaimName: "string",
                resourceClaimTemplateName: "string",
            }],
            schedulingConstraints: {
                topology: [{
                    key: "string",
                }],
            },
            schedulingPolicy: {
                basic: {},
                gang: {
                    minCount: 0,
                },
            },
        },
    });
    
    type: kubernetes:scheduling.k8s.io/v1alpha2:PodGroupPatch
    properties:
        apiVersion: string
        kind: string
        metadata:
            annotations:
                string: string
            clusterName: string
            creationTimestamp: string
            deletionGracePeriodSeconds: 0
            deletionTimestamp: string
            finalizers:
                - string
            generateName: string
            generation: 0
            labels:
                string: string
            managedFields:
                - apiVersion: string
                  fieldsType: string
                  fieldsV1: '{}'
                  manager: string
                  operation: string
                  subresource: string
                  time: string
            name: string
            namespace: string
            ownerReferences:
                - apiVersion: string
                  blockOwnerDeletion: false
                  controller: false
                  kind: string
                  name: string
                  uid: string
            resourceVersion: string
            selfLink: string
            uid: string
        spec:
            disruptionMode: string
            podGroupTemplateRef:
                workload:
                    podGroupTemplateName: string
                    workloadName: string
            priority: 0
            priorityClassName: string
            resourceClaims:
                - name: string
                  resourceClaimName: string
                  resourceClaimTemplateName: string
            schedulingConstraints:
                topology:
                    - key: string
            schedulingPolicy:
                basic: {}
                gang:
                    minCount: 0
    

    PodGroupPatch Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The PodGroupPatch resource accepts the following input properties:

    Metadata Pulumi.Kubernetes.Meta.V1.Inputs.ObjectMetaPatch
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Spec PodGroupSpecPatch
    Spec defines the desired state of the PodGroup.
    Metadata ObjectMetaPatchArgs
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Spec PodGroupSpecPatchArgs
    Spec defines the desired state of the PodGroup.
    metadata ObjectMetaPatch
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    spec PodGroupSpecPatch
    Spec defines the desired state of the PodGroup.
    metadata meta.v1.ObjectMetaPatch
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    spec PodGroupSpecPatch
    Spec defines the desired state of the PodGroup.
    metadata meta.v1.ObjectMetaPatchArgs
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    spec PodGroupSpecPatchArgs
    Spec defines the desired state of the PodGroup.
    metadata Property Map
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    spec Property Map
    Spec defines the desired state of the PodGroup.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PodGroupPatch resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Status PodGroupStatusPatch
    Status represents the current observed state of the PodGroup.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status PodGroupStatusPatch
    Status represents the current observed state of the PodGroup.
    id String
    The provider-assigned unique ID for this managed resource.
    status PodGroupStatusPatch
    Status represents the current observed state of the PodGroup.
    id string
    The provider-assigned unique ID for this managed resource.
    status PodGroupStatusPatch
    Status represents the current observed state of the PodGroup.
    id str
    The provider-assigned unique ID for this managed resource.
    status PodGroupStatusPatch
    Status represents the current observed state of the PodGroup.
    id String
    The provider-assigned unique ID for this managed resource.
    status Property Map
    Status represents the current observed state of the PodGroup.

    Supporting Types

    ConditionPatch, ConditionPatchArgs

    Condition contains details for one aspect of the current state of this API Resource.
    LastTransitionTime string
    lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.
    Message string
    message is a human readable message indicating details about the transition. This may be an empty string.
    ObservedGeneration int
    observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.
    Reason string
    reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.
    Status string
    status of the condition, one of True, False, Unknown.
    Type string
    type of condition in CamelCase or in foo.example.com/CamelCase.
    LastTransitionTime string
    lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.
    Message string
    message is a human readable message indicating details about the transition. This may be an empty string.
    ObservedGeneration int
    observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.
    Reason string
    reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.
    Status string
    status of the condition, one of True, False, Unknown.
    Type string
    type of condition in CamelCase or in foo.example.com/CamelCase.
    lastTransitionTime String
    lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.
    message String
    message is a human readable message indicating details about the transition. This may be an empty string.
    observedGeneration Integer
    observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.
    reason String
    reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.
    status String
    status of the condition, one of True, False, Unknown.
    type String
    type of condition in CamelCase or in foo.example.com/CamelCase.
    lastTransitionTime string
    lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.
    message string
    message is a human readable message indicating details about the transition. This may be an empty string.
    observedGeneration number
    observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.
    reason string
    reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.
    status string
    status of the condition, one of True, False, Unknown.
    type string
    type of condition in CamelCase or in foo.example.com/CamelCase.
    last_transition_time str
    lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.
    message str
    message is a human readable message indicating details about the transition. This may be an empty string.
    observed_generation int
    observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.
    reason str
    reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.
    status str
    status of the condition, one of True, False, Unknown.
    type str
    type of condition in CamelCase or in foo.example.com/CamelCase.
    lastTransitionTime String
    lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.
    message String
    message is a human readable message indicating details about the transition. This may be an empty string.
    observedGeneration Number
    observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.
    reason String
    reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.
    status String
    status of the condition, one of True, False, Unknown.
    type String
    type of condition in CamelCase or in foo.example.com/CamelCase.

    GangSchedulingPolicyPatch, GangSchedulingPolicyPatchArgs

    GangSchedulingPolicy defines the parameters for gang scheduling.
    MinCount int
    MinCount is the minimum number of pods that must be schedulable or scheduled at the same time for the scheduler to admit the entire group. It must be a positive integer.
    MinCount int
    MinCount is the minimum number of pods that must be schedulable or scheduled at the same time for the scheduler to admit the entire group. It must be a positive integer.
    minCount Integer
    MinCount is the minimum number of pods that must be schedulable or scheduled at the same time for the scheduler to admit the entire group. It must be a positive integer.
    minCount number
    MinCount is the minimum number of pods that must be schedulable or scheduled at the same time for the scheduler to admit the entire group. It must be a positive integer.
    min_count int
    MinCount is the minimum number of pods that must be schedulable or scheduled at the same time for the scheduler to admit the entire group. It must be a positive integer.
    minCount Number
    MinCount is the minimum number of pods that must be schedulable or scheduled at the same time for the scheduler to admit the entire group. It must be a positive integer.

    ManagedFieldsEntryPatch, ManagedFieldsEntryPatchArgs

    ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.
    ApiVersion string
    APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
    FieldsType string
    FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
    FieldsV1 System.Text.Json.JsonElement
    FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
    Manager string
    Manager is an identifier of the workflow managing these fields.
    Operation string
    Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
    Subresource string
    Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
    Time string
    Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.
    ApiVersion string
    APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
    FieldsType string
    FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
    FieldsV1 interface{}
    FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
    Manager string
    Manager is an identifier of the workflow managing these fields.
    Operation string
    Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
    Subresource string
    Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
    Time string
    Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.
    apiVersion String
    APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
    fieldsType String
    FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
    fieldsV1 JsonElement
    FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
    manager String
    Manager is an identifier of the workflow managing these fields.
    operation String
    Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
    subresource String
    Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
    time String
    Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.
    apiVersion string
    APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
    fieldsType string
    FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
    fieldsV1 any
    FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
    manager string
    Manager is an identifier of the workflow managing these fields.
    operation string
    Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
    subresource string
    Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
    time string
    Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.
    api_version str
    APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
    fields_type str
    FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
    fields_v1 Any
    FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
    manager str
    Manager is an identifier of the workflow managing these fields.
    operation str
    Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
    subresource str
    Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
    time str
    Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.
    apiVersion String
    APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
    fieldsType String
    FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
    fieldsV1 JSON
    FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
    manager String
    Manager is an identifier of the workflow managing these fields.
    operation String
    Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
    subresource String
    Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
    time String
    Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.

    ObjectMetaPatch, ObjectMetaPatchArgs

    ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
    Annotations Dictionary<string, string>
    Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
    ClusterName string
    The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
    CreationTimestamp string

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.

    Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

    DeletionGracePeriodSeconds int
    Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
    DeletionTimestamp string

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.

    Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

    Finalizers List<string>
    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
    GenerateName string

    GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.

    If this field is specified and the generated name exists, the server will return a 409.

    Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency

    Generation int
    A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
    ManagedFields List<Pulumi.Kubernetes.Meta.V1.Inputs.ManagedFieldsEntryPatch>
    ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
    Name string
    Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
    Namespace string

    Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.

    Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces

    OwnerReferences List<Pulumi.Kubernetes.Meta.V1.Inputs.OwnerReferencePatch>
    List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
    ResourceVersion string

    An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.

    Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency

    SelfLink string
    Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
    Uid string

    UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.

    Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids

    Annotations map[string]string
    Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
    ClusterName string
    The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
    CreationTimestamp string

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.

    Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

    DeletionGracePeriodSeconds int
    Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
    DeletionTimestamp string

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.

    Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

    Finalizers []string
    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
    GenerateName string

    GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.

    If this field is specified and the generated name exists, the server will return a 409.

    Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency

    Generation int
    A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
    ManagedFields ManagedFieldsEntryPatch
    ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
    Name string
    Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
    Namespace string

    Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.

    Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces

    OwnerReferences OwnerReferencePatch
    List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
    ResourceVersion string

    An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.

    Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency

    SelfLink string
    Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
    Uid string

    UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.

    Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids

    annotations Map<String,String>
    Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
    clusterName String
    The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
    creationTimestamp String

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.

    Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

    deletionGracePeriodSeconds Integer
    Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
    deletionTimestamp String

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.

    Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

    finalizers List<String>
    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
    generateName String

    GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.

    If this field is specified and the generated name exists, the server will return a 409.

    Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency

    generation Integer
    A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
    managedFields List<ManagedFieldsEntryPatch>
    ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
    name String
    Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
    namespace String

    Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.

    Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces

    ownerReferences List<OwnerReferencePatch>
    List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
    resourceVersion String

    An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.

    Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency

    selfLink String
    Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
    uid String

    UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.

    Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids

    annotations {[key: string]: string}
    Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
    clusterName string
    The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
    creationTimestamp string

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.

    Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

    deletionGracePeriodSeconds number
    Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
    deletionTimestamp string

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.

    Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

    finalizers string[]
    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
    generateName string

    GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.

    If this field is specified and the generated name exists, the server will return a 409.

    Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency

    generation number
    A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
    managedFields meta.v1.ManagedFieldsEntryPatch[]
    ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
    name string
    Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
    namespace string

    Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.

    Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces

    ownerReferences meta.v1.OwnerReferencePatch[]
    List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
    resourceVersion string

    An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.

    Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency

    selfLink string
    Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
    uid string

    UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.

    Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids

    annotations Mapping[str, str]
    Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
    cluster_name str
    The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
    creation_timestamp str

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.

    Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

    deletion_grace_period_seconds int
    Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
    deletion_timestamp str

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.

    Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

    finalizers Sequence[str]
    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
    generate_name str

    GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.

    If this field is specified and the generated name exists, the server will return a 409.

    Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency

    generation int
    A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
    managed_fields Sequence[meta.v1.ManagedFieldsEntryPatch]
    ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
    name str
    Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
    namespace str

    Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.

    Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces

    owner_references Sequence[meta.v1.OwnerReferencePatch]
    List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
    resource_version str

    An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.

    Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency

    self_link str
    Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
    uid str

    UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.

    Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids

    annotations Map<String>
    Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
    clusterName String
    The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
    creationTimestamp String

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.

    Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

    deletionGracePeriodSeconds Number
    Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
    deletionTimestamp String

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.

    Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

    finalizers List<String>
    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
    generateName String

    GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.

    If this field is specified and the generated name exists, the server will return a 409.

    Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency

    generation Number
    A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
    managedFields List<Property Map>
    ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
    name String
    Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
    namespace String

    Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.

    Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces

    ownerReferences List<Property Map>
    List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
    resourceVersion String

    An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.

    Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency

    selfLink String
    Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
    uid String

    UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.

    Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids

    OwnerReferencePatch, OwnerReferencePatchArgs

    OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.
    ApiVersion string
    API version of the referent.
    BlockOwnerDeletion bool
    If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
    Controller bool
    If true, this reference points to the managing controller.
    Kind string
    Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    Name string
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
    Uid string
    UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
    ApiVersion string
    API version of the referent.
    BlockOwnerDeletion bool
    If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
    Controller bool
    If true, this reference points to the managing controller.
    Kind string
    Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    Name string
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
    Uid string
    UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
    apiVersion String
    API version of the referent.
    blockOwnerDeletion Boolean
    If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
    controller Boolean
    If true, this reference points to the managing controller.
    kind String
    Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    name String
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
    uid String
    UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
    apiVersion string
    API version of the referent.
    blockOwnerDeletion boolean
    If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
    controller boolean
    If true, this reference points to the managing controller.
    kind string
    Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    name string
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
    uid string
    UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
    api_version str
    API version of the referent.
    block_owner_deletion bool
    If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
    controller bool
    If true, this reference points to the managing controller.
    kind str
    Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    name str
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
    uid str
    UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
    apiVersion String
    API version of the referent.
    blockOwnerDeletion Boolean
    If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
    controller Boolean
    If true, this reference points to the managing controller.
    kind String
    Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    name String
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
    uid String
    UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids

    PodGroupResourceClaimPatch, PodGroupResourceClaimPatchArgs

    PodGroupResourceClaim references exactly one ResourceClaim, either directly or by naming a ResourceClaimTemplate which is then turned into a ResourceClaim for the PodGroup.

    It adds a name to it that uniquely identifies the ResourceClaim inside the PodGroup. Pods that need access to the ResourceClaim define a matching reference in its own Spec.ResourceClaims. The Pod's claim must match all fields of the PodGroup's claim exactly.

    Name string
    Name uniquely identifies this resource claim inside the PodGroup. This must be a DNS_LABEL.
    ResourceClaimName string

    ResourceClaimName is the name of a ResourceClaim object in the same namespace as this PodGroup. The ResourceClaim will be reserved for the PodGroup instead of its individual pods.

    Exactly one of ResourceClaimName and ResourceClaimTemplateName must be set.

    ResourceClaimTemplateName string

    ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this PodGroup.

    The template will be used to create a new ResourceClaim, which will be bound to this PodGroup. When this PodGroup is deleted, the ResourceClaim will also be deleted. The PodGroup name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podgroup.status.resourceClaimStatuses.

    This field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.

    Exactly one of ResourceClaimName and ResourceClaimTemplateName must be set.

    Name string
    Name uniquely identifies this resource claim inside the PodGroup. This must be a DNS_LABEL.
    ResourceClaimName string

    ResourceClaimName is the name of a ResourceClaim object in the same namespace as this PodGroup. The ResourceClaim will be reserved for the PodGroup instead of its individual pods.

    Exactly one of ResourceClaimName and ResourceClaimTemplateName must be set.

    ResourceClaimTemplateName string

    ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this PodGroup.

    The template will be used to create a new ResourceClaim, which will be bound to this PodGroup. When this PodGroup is deleted, the ResourceClaim will also be deleted. The PodGroup name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podgroup.status.resourceClaimStatuses.

    This field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.

    Exactly one of ResourceClaimName and ResourceClaimTemplateName must be set.

    name String
    Name uniquely identifies this resource claim inside the PodGroup. This must be a DNS_LABEL.
    resourceClaimName String

    ResourceClaimName is the name of a ResourceClaim object in the same namespace as this PodGroup. The ResourceClaim will be reserved for the PodGroup instead of its individual pods.

    Exactly one of ResourceClaimName and ResourceClaimTemplateName must be set.

    resourceClaimTemplateName String

    ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this PodGroup.

    The template will be used to create a new ResourceClaim, which will be bound to this PodGroup. When this PodGroup is deleted, the ResourceClaim will also be deleted. The PodGroup name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podgroup.status.resourceClaimStatuses.

    This field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.

    Exactly one of ResourceClaimName and ResourceClaimTemplateName must be set.

    name string
    Name uniquely identifies this resource claim inside the PodGroup. This must be a DNS_LABEL.
    resourceClaimName string

    ResourceClaimName is the name of a ResourceClaim object in the same namespace as this PodGroup. The ResourceClaim will be reserved for the PodGroup instead of its individual pods.

    Exactly one of ResourceClaimName and ResourceClaimTemplateName must be set.

    resourceClaimTemplateName string

    ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this PodGroup.

    The template will be used to create a new ResourceClaim, which will be bound to this PodGroup. When this PodGroup is deleted, the ResourceClaim will also be deleted. The PodGroup name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podgroup.status.resourceClaimStatuses.

    This field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.

    Exactly one of ResourceClaimName and ResourceClaimTemplateName must be set.

    name str
    Name uniquely identifies this resource claim inside the PodGroup. This must be a DNS_LABEL.
    resource_claim_name str

    ResourceClaimName is the name of a ResourceClaim object in the same namespace as this PodGroup. The ResourceClaim will be reserved for the PodGroup instead of its individual pods.

    Exactly one of ResourceClaimName and ResourceClaimTemplateName must be set.

    resource_claim_template_name str

    ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this PodGroup.

    The template will be used to create a new ResourceClaim, which will be bound to this PodGroup. When this PodGroup is deleted, the ResourceClaim will also be deleted. The PodGroup name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podgroup.status.resourceClaimStatuses.

    This field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.

    Exactly one of ResourceClaimName and ResourceClaimTemplateName must be set.

    name String
    Name uniquely identifies this resource claim inside the PodGroup. This must be a DNS_LABEL.
    resourceClaimName String

    ResourceClaimName is the name of a ResourceClaim object in the same namespace as this PodGroup. The ResourceClaim will be reserved for the PodGroup instead of its individual pods.

    Exactly one of ResourceClaimName and ResourceClaimTemplateName must be set.

    resourceClaimTemplateName String

    ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this PodGroup.

    The template will be used to create a new ResourceClaim, which will be bound to this PodGroup. When this PodGroup is deleted, the ResourceClaim will also be deleted. The PodGroup name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podgroup.status.resourceClaimStatuses.

    This field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.

    Exactly one of ResourceClaimName and ResourceClaimTemplateName must be set.

    PodGroupResourceClaimStatusPatch, PodGroupResourceClaimStatusPatchArgs

    PodGroupResourceClaimStatus is stored in the PodGroupStatus for each PodGroupResourceClaim which references a ResourceClaimTemplate. It stores the generated name for the corresponding ResourceClaim.
    Name string
    Name uniquely identifies this resource claim inside the PodGroup. This must match the name of an entry in podgroup.spec.resourceClaims, which implies that the string must be a DNS_LABEL.
    ResourceClaimName string
    ResourceClaimName is the name of the ResourceClaim that was generated for the PodGroup in the namespace of the PodGroup. If this is unset, then generating a ResourceClaim was not necessary. The podgroup.spec.resourceClaims entry can be ignored in this case.
    Name string
    Name uniquely identifies this resource claim inside the PodGroup. This must match the name of an entry in podgroup.spec.resourceClaims, which implies that the string must be a DNS_LABEL.
    ResourceClaimName string
    ResourceClaimName is the name of the ResourceClaim that was generated for the PodGroup in the namespace of the PodGroup. If this is unset, then generating a ResourceClaim was not necessary. The podgroup.spec.resourceClaims entry can be ignored in this case.
    name String
    Name uniquely identifies this resource claim inside the PodGroup. This must match the name of an entry in podgroup.spec.resourceClaims, which implies that the string must be a DNS_LABEL.
    resourceClaimName String
    ResourceClaimName is the name of the ResourceClaim that was generated for the PodGroup in the namespace of the PodGroup. If this is unset, then generating a ResourceClaim was not necessary. The podgroup.spec.resourceClaims entry can be ignored in this case.
    name string
    Name uniquely identifies this resource claim inside the PodGroup. This must match the name of an entry in podgroup.spec.resourceClaims, which implies that the string must be a DNS_LABEL.
    resourceClaimName string
    ResourceClaimName is the name of the ResourceClaim that was generated for the PodGroup in the namespace of the PodGroup. If this is unset, then generating a ResourceClaim was not necessary. The podgroup.spec.resourceClaims entry can be ignored in this case.
    name str
    Name uniquely identifies this resource claim inside the PodGroup. This must match the name of an entry in podgroup.spec.resourceClaims, which implies that the string must be a DNS_LABEL.
    resource_claim_name str
    ResourceClaimName is the name of the ResourceClaim that was generated for the PodGroup in the namespace of the PodGroup. If this is unset, then generating a ResourceClaim was not necessary. The podgroup.spec.resourceClaims entry can be ignored in this case.
    name String
    Name uniquely identifies this resource claim inside the PodGroup. This must match the name of an entry in podgroup.spec.resourceClaims, which implies that the string must be a DNS_LABEL.
    resourceClaimName String
    ResourceClaimName is the name of the ResourceClaim that was generated for the PodGroup in the namespace of the PodGroup. If this is unset, then generating a ResourceClaim was not necessary. The podgroup.spec.resourceClaims entry can be ignored in this case.

    PodGroupSchedulingConstraintsPatch, PodGroupSchedulingConstraintsPatchArgs

    PodGroupSchedulingConstraints defines scheduling constraints (e.g. topology) for a PodGroup.
    Topology List<TopologyConstraintPatch>
    Topology defines the topology constraints for the pod group. Currently only a single topology constraint can be specified. This may change in the future.
    Topology []TopologyConstraintPatch
    Topology defines the topology constraints for the pod group. Currently only a single topology constraint can be specified. This may change in the future.
    topology List<TopologyConstraintPatch>
    Topology defines the topology constraints for the pod group. Currently only a single topology constraint can be specified. This may change in the future.
    topology TopologyConstraintPatch[]
    Topology defines the topology constraints for the pod group. Currently only a single topology constraint can be specified. This may change in the future.
    topology Sequence[TopologyConstraintPatch]
    Topology defines the topology constraints for the pod group. Currently only a single topology constraint can be specified. This may change in the future.
    topology List<Property Map>
    Topology defines the topology constraints for the pod group. Currently only a single topology constraint can be specified. This may change in the future.

    PodGroupSchedulingPolicyPatch, PodGroupSchedulingPolicyPatchArgs

    PodGroupSchedulingPolicy defines the scheduling configuration for a PodGroup. Exactly one policy must be set.
    Basic BasicSchedulingPolicyPatch
    Basic specifies that the pods in this group should be scheduled using standard Kubernetes scheduling behavior.
    Gang GangSchedulingPolicyPatch
    Gang specifies that the pods in this group should be scheduled using all-or-nothing semantics.
    Basic BasicSchedulingPolicyPatch
    Basic specifies that the pods in this group should be scheduled using standard Kubernetes scheduling behavior.
    Gang GangSchedulingPolicyPatch
    Gang specifies that the pods in this group should be scheduled using all-or-nothing semantics.
    basic BasicSchedulingPolicyPatch
    Basic specifies that the pods in this group should be scheduled using standard Kubernetes scheduling behavior.
    gang GangSchedulingPolicyPatch
    Gang specifies that the pods in this group should be scheduled using all-or-nothing semantics.
    basic BasicSchedulingPolicyPatch
    Basic specifies that the pods in this group should be scheduled using standard Kubernetes scheduling behavior.
    gang GangSchedulingPolicyPatch
    Gang specifies that the pods in this group should be scheduled using all-or-nothing semantics.
    basic BasicSchedulingPolicyPatch
    Basic specifies that the pods in this group should be scheduled using standard Kubernetes scheduling behavior.
    gang GangSchedulingPolicyPatch
    Gang specifies that the pods in this group should be scheduled using all-or-nothing semantics.
    basic Property Map
    Basic specifies that the pods in this group should be scheduled using standard Kubernetes scheduling behavior.
    gang Property Map
    Gang specifies that the pods in this group should be scheduled using all-or-nothing semantics.

    PodGroupSpecPatch, PodGroupSpecPatchArgs

    PodGroupSpec defines the desired state of a PodGroup.
    DisruptionMode string
    DisruptionMode defines the mode in which a given PodGroup can be disrupted. Controllers are expected to fill this field by copying it from a PodGroupTemplate. One of Pod, PodGroup. Defaults to Pod if unset. This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    PodGroupTemplateRef PodGroupTemplateReferencePatch
    PodGroupTemplateRef references an optional PodGroup template within other object (e.g. Workload) that was used to create the PodGroup. This field is immutable.
    Priority int
    Priority is the value of priority of this pod group. Various system components use this field to find the priority of the pod group. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority. This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    PriorityClassName string
    PriorityClassName defines the priority that should be considered when scheduling this pod group. Controllers are expected to fill this field by copying it from a PodGroupTemplate. Otherwise, it is validated and resolved similarly to the PriorityClassName on PodGroupTemplate (i.e. if no priority class is specified, admission control can set this to the global default priority class if it exists. Otherwise, the pod group's priority will be zero). This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    ResourceClaims List<PodGroupResourceClaimPatch>

    ResourceClaims defines which ResourceClaims may be shared among Pods in the group. Pods consume the devices allocated to a PodGroup's claim by defining a claim in its own Spec.ResourceClaims that matches the PodGroup's claim exactly. The claim must have the same name and refer to the same ResourceClaim or ResourceClaimTemplate.

    This is an alpha-level field and requires that the DRAWorkloadResourceClaims feature gate is enabled.

    This field is immutable.

    SchedulingConstraints PodGroupSchedulingConstraintsPatch
    SchedulingConstraints defines optional scheduling constraints (e.g. topology) for this PodGroup. Controllers are expected to fill this field by copying it from a PodGroupTemplate. This field is immutable. This field is only available when the TopologyAwareWorkloadScheduling feature gate is enabled.
    SchedulingPolicy PodGroupSchedulingPolicyPatch
    SchedulingPolicy defines the scheduling policy for this instance of the PodGroup. Controllers are expected to fill this field by copying it from a PodGroupTemplate. This field is immutable.
    DisruptionMode string
    DisruptionMode defines the mode in which a given PodGroup can be disrupted. Controllers are expected to fill this field by copying it from a PodGroupTemplate. One of Pod, PodGroup. Defaults to Pod if unset. This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    PodGroupTemplateRef PodGroupTemplateReferencePatch
    PodGroupTemplateRef references an optional PodGroup template within other object (e.g. Workload) that was used to create the PodGroup. This field is immutable.
    Priority int
    Priority is the value of priority of this pod group. Various system components use this field to find the priority of the pod group. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority. This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    PriorityClassName string
    PriorityClassName defines the priority that should be considered when scheduling this pod group. Controllers are expected to fill this field by copying it from a PodGroupTemplate. Otherwise, it is validated and resolved similarly to the PriorityClassName on PodGroupTemplate (i.e. if no priority class is specified, admission control can set this to the global default priority class if it exists. Otherwise, the pod group's priority will be zero). This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    ResourceClaims []PodGroupResourceClaimPatch

    ResourceClaims defines which ResourceClaims may be shared among Pods in the group. Pods consume the devices allocated to a PodGroup's claim by defining a claim in its own Spec.ResourceClaims that matches the PodGroup's claim exactly. The claim must have the same name and refer to the same ResourceClaim or ResourceClaimTemplate.

    This is an alpha-level field and requires that the DRAWorkloadResourceClaims feature gate is enabled.

    This field is immutable.

    SchedulingConstraints PodGroupSchedulingConstraintsPatch
    SchedulingConstraints defines optional scheduling constraints (e.g. topology) for this PodGroup. Controllers are expected to fill this field by copying it from a PodGroupTemplate. This field is immutable. This field is only available when the TopologyAwareWorkloadScheduling feature gate is enabled.
    SchedulingPolicy PodGroupSchedulingPolicyPatch
    SchedulingPolicy defines the scheduling policy for this instance of the PodGroup. Controllers are expected to fill this field by copying it from a PodGroupTemplate. This field is immutable.
    disruptionMode String
    DisruptionMode defines the mode in which a given PodGroup can be disrupted. Controllers are expected to fill this field by copying it from a PodGroupTemplate. One of Pod, PodGroup. Defaults to Pod if unset. This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    podGroupTemplateRef PodGroupTemplateReferencePatch
    PodGroupTemplateRef references an optional PodGroup template within other object (e.g. Workload) that was used to create the PodGroup. This field is immutable.
    priority Integer
    Priority is the value of priority of this pod group. Various system components use this field to find the priority of the pod group. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority. This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    priorityClassName String
    PriorityClassName defines the priority that should be considered when scheduling this pod group. Controllers are expected to fill this field by copying it from a PodGroupTemplate. Otherwise, it is validated and resolved similarly to the PriorityClassName on PodGroupTemplate (i.e. if no priority class is specified, admission control can set this to the global default priority class if it exists. Otherwise, the pod group's priority will be zero). This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    resourceClaims List<PodGroupResourceClaimPatch>

    ResourceClaims defines which ResourceClaims may be shared among Pods in the group. Pods consume the devices allocated to a PodGroup's claim by defining a claim in its own Spec.ResourceClaims that matches the PodGroup's claim exactly. The claim must have the same name and refer to the same ResourceClaim or ResourceClaimTemplate.

    This is an alpha-level field and requires that the DRAWorkloadResourceClaims feature gate is enabled.

    This field is immutable.

    schedulingConstraints PodGroupSchedulingConstraintsPatch
    SchedulingConstraints defines optional scheduling constraints (e.g. topology) for this PodGroup. Controllers are expected to fill this field by copying it from a PodGroupTemplate. This field is immutable. This field is only available when the TopologyAwareWorkloadScheduling feature gate is enabled.
    schedulingPolicy PodGroupSchedulingPolicyPatch
    SchedulingPolicy defines the scheduling policy for this instance of the PodGroup. Controllers are expected to fill this field by copying it from a PodGroupTemplate. This field is immutable.
    disruptionMode string
    DisruptionMode defines the mode in which a given PodGroup can be disrupted. Controllers are expected to fill this field by copying it from a PodGroupTemplate. One of Pod, PodGroup. Defaults to Pod if unset. This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    podGroupTemplateRef PodGroupTemplateReferencePatch
    PodGroupTemplateRef references an optional PodGroup template within other object (e.g. Workload) that was used to create the PodGroup. This field is immutable.
    priority number
    Priority is the value of priority of this pod group. Various system components use this field to find the priority of the pod group. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority. This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    priorityClassName string
    PriorityClassName defines the priority that should be considered when scheduling this pod group. Controllers are expected to fill this field by copying it from a PodGroupTemplate. Otherwise, it is validated and resolved similarly to the PriorityClassName on PodGroupTemplate (i.e. if no priority class is specified, admission control can set this to the global default priority class if it exists. Otherwise, the pod group's priority will be zero). This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    resourceClaims PodGroupResourceClaimPatch[]

    ResourceClaims defines which ResourceClaims may be shared among Pods in the group. Pods consume the devices allocated to a PodGroup's claim by defining a claim in its own Spec.ResourceClaims that matches the PodGroup's claim exactly. The claim must have the same name and refer to the same ResourceClaim or ResourceClaimTemplate.

    This is an alpha-level field and requires that the DRAWorkloadResourceClaims feature gate is enabled.

    This field is immutable.

    schedulingConstraints PodGroupSchedulingConstraintsPatch
    SchedulingConstraints defines optional scheduling constraints (e.g. topology) for this PodGroup. Controllers are expected to fill this field by copying it from a PodGroupTemplate. This field is immutable. This field is only available when the TopologyAwareWorkloadScheduling feature gate is enabled.
    schedulingPolicy PodGroupSchedulingPolicyPatch
    SchedulingPolicy defines the scheduling policy for this instance of the PodGroup. Controllers are expected to fill this field by copying it from a PodGroupTemplate. This field is immutable.
    disruption_mode str
    DisruptionMode defines the mode in which a given PodGroup can be disrupted. Controllers are expected to fill this field by copying it from a PodGroupTemplate. One of Pod, PodGroup. Defaults to Pod if unset. This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    pod_group_template_ref PodGroupTemplateReferencePatch
    PodGroupTemplateRef references an optional PodGroup template within other object (e.g. Workload) that was used to create the PodGroup. This field is immutable.
    priority int
    Priority is the value of priority of this pod group. Various system components use this field to find the priority of the pod group. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority. This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    priority_class_name str
    PriorityClassName defines the priority that should be considered when scheduling this pod group. Controllers are expected to fill this field by copying it from a PodGroupTemplate. Otherwise, it is validated and resolved similarly to the PriorityClassName on PodGroupTemplate (i.e. if no priority class is specified, admission control can set this to the global default priority class if it exists. Otherwise, the pod group's priority will be zero). This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    resource_claims Sequence[PodGroupResourceClaimPatch]

    ResourceClaims defines which ResourceClaims may be shared among Pods in the group. Pods consume the devices allocated to a PodGroup's claim by defining a claim in its own Spec.ResourceClaims that matches the PodGroup's claim exactly. The claim must have the same name and refer to the same ResourceClaim or ResourceClaimTemplate.

    This is an alpha-level field and requires that the DRAWorkloadResourceClaims feature gate is enabled.

    This field is immutable.

    scheduling_constraints PodGroupSchedulingConstraintsPatch
    SchedulingConstraints defines optional scheduling constraints (e.g. topology) for this PodGroup. Controllers are expected to fill this field by copying it from a PodGroupTemplate. This field is immutable. This field is only available when the TopologyAwareWorkloadScheduling feature gate is enabled.
    scheduling_policy PodGroupSchedulingPolicyPatch
    SchedulingPolicy defines the scheduling policy for this instance of the PodGroup. Controllers are expected to fill this field by copying it from a PodGroupTemplate. This field is immutable.
    disruptionMode String
    DisruptionMode defines the mode in which a given PodGroup can be disrupted. Controllers are expected to fill this field by copying it from a PodGroupTemplate. One of Pod, PodGroup. Defaults to Pod if unset. This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    podGroupTemplateRef Property Map
    PodGroupTemplateRef references an optional PodGroup template within other object (e.g. Workload) that was used to create the PodGroup. This field is immutable.
    priority Number
    Priority is the value of priority of this pod group. Various system components use this field to find the priority of the pod group. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority. This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    priorityClassName String
    PriorityClassName defines the priority that should be considered when scheduling this pod group. Controllers are expected to fill this field by copying it from a PodGroupTemplate. Otherwise, it is validated and resolved similarly to the PriorityClassName on PodGroupTemplate (i.e. if no priority class is specified, admission control can set this to the global default priority class if it exists. Otherwise, the pod group's priority will be zero). This field is immutable. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
    resourceClaims List<Property Map>

    ResourceClaims defines which ResourceClaims may be shared among Pods in the group. Pods consume the devices allocated to a PodGroup's claim by defining a claim in its own Spec.ResourceClaims that matches the PodGroup's claim exactly. The claim must have the same name and refer to the same ResourceClaim or ResourceClaimTemplate.

    This is an alpha-level field and requires that the DRAWorkloadResourceClaims feature gate is enabled.

    This field is immutable.

    schedulingConstraints Property Map
    SchedulingConstraints defines optional scheduling constraints (e.g. topology) for this PodGroup. Controllers are expected to fill this field by copying it from a PodGroupTemplate. This field is immutable. This field is only available when the TopologyAwareWorkloadScheduling feature gate is enabled.
    schedulingPolicy Property Map
    SchedulingPolicy defines the scheduling policy for this instance of the PodGroup. Controllers are expected to fill this field by copying it from a PodGroupTemplate. This field is immutable.

    PodGroupStatusPatch, PodGroupStatusPatchArgs

    PodGroupStatus represents information about the status of a pod group.
    Conditions List<Pulumi.Kubernetes.Meta.V1.Inputs.ConditionPatch>

    Conditions represent the latest observations of the PodGroup's state.

    Known condition types: - "PodGroupScheduled": Indicates whether the scheduling requirement has been satisfied. - "DisruptionTarget": Indicates whether the PodGroup is about to be terminated due to disruption such as preemption.

    Known reasons for the PodGroupScheduled condition: - "Unschedulable": The PodGroup cannot be scheduled due to resource constraints, affinity/anti-affinity rules, or insufficient capacity for the gang.

    • "SchedulerError": The PodGroup cannot be scheduled due to some internal error that happened during scheduling, for example due to nodeAffinity parsing errors.

    Known reasons for the DisruptionTarget condition: - "PreemptionByScheduler": The PodGroup was preempted by the scheduler to make room for higher-priority PodGroups or Pods.

    ResourceClaimStatuses List<PodGroupResourceClaimStatusPatch>
    Status of resource claims.
    Conditions ConditionPatch

    Conditions represent the latest observations of the PodGroup's state.

    Known condition types: - "PodGroupScheduled": Indicates whether the scheduling requirement has been satisfied. - "DisruptionTarget": Indicates whether the PodGroup is about to be terminated due to disruption such as preemption.

    Known reasons for the PodGroupScheduled condition: - "Unschedulable": The PodGroup cannot be scheduled due to resource constraints, affinity/anti-affinity rules, or insufficient capacity for the gang.

    • "SchedulerError": The PodGroup cannot be scheduled due to some internal error that happened during scheduling, for example due to nodeAffinity parsing errors.

    Known reasons for the DisruptionTarget condition: - "PreemptionByScheduler": The PodGroup was preempted by the scheduler to make room for higher-priority PodGroups or Pods.

    ResourceClaimStatuses []PodGroupResourceClaimStatusPatch
    Status of resource claims.
    conditions List<ConditionPatch>

    Conditions represent the latest observations of the PodGroup's state.

    Known condition types: - "PodGroupScheduled": Indicates whether the scheduling requirement has been satisfied. - "DisruptionTarget": Indicates whether the PodGroup is about to be terminated due to disruption such as preemption.

    Known reasons for the PodGroupScheduled condition: - "Unschedulable": The PodGroup cannot be scheduled due to resource constraints, affinity/anti-affinity rules, or insufficient capacity for the gang.

    • "SchedulerError": The PodGroup cannot be scheduled due to some internal error that happened during scheduling, for example due to nodeAffinity parsing errors.

    Known reasons for the DisruptionTarget condition: - "PreemptionByScheduler": The PodGroup was preempted by the scheduler to make room for higher-priority PodGroups or Pods.

    resourceClaimStatuses List<PodGroupResourceClaimStatusPatch>
    Status of resource claims.
    conditions meta.v1.ConditionPatch[]

    Conditions represent the latest observations of the PodGroup's state.

    Known condition types: - "PodGroupScheduled": Indicates whether the scheduling requirement has been satisfied. - "DisruptionTarget": Indicates whether the PodGroup is about to be terminated due to disruption such as preemption.

    Known reasons for the PodGroupScheduled condition: - "Unschedulable": The PodGroup cannot be scheduled due to resource constraints, affinity/anti-affinity rules, or insufficient capacity for the gang.

    • "SchedulerError": The PodGroup cannot be scheduled due to some internal error that happened during scheduling, for example due to nodeAffinity parsing errors.

    Known reasons for the DisruptionTarget condition: - "PreemptionByScheduler": The PodGroup was preempted by the scheduler to make room for higher-priority PodGroups or Pods.

    resourceClaimStatuses PodGroupResourceClaimStatusPatch[]
    Status of resource claims.
    conditions Sequence[meta.v1.ConditionPatch]

    Conditions represent the latest observations of the PodGroup's state.

    Known condition types: - "PodGroupScheduled": Indicates whether the scheduling requirement has been satisfied. - "DisruptionTarget": Indicates whether the PodGroup is about to be terminated due to disruption such as preemption.

    Known reasons for the PodGroupScheduled condition: - "Unschedulable": The PodGroup cannot be scheduled due to resource constraints, affinity/anti-affinity rules, or insufficient capacity for the gang.

    • "SchedulerError": The PodGroup cannot be scheduled due to some internal error that happened during scheduling, for example due to nodeAffinity parsing errors.

    Known reasons for the DisruptionTarget condition: - "PreemptionByScheduler": The PodGroup was preempted by the scheduler to make room for higher-priority PodGroups or Pods.

    resource_claim_statuses Sequence[PodGroupResourceClaimStatusPatch]
    Status of resource claims.
    conditions List<Property Map>

    Conditions represent the latest observations of the PodGroup's state.

    Known condition types: - "PodGroupScheduled": Indicates whether the scheduling requirement has been satisfied. - "DisruptionTarget": Indicates whether the PodGroup is about to be terminated due to disruption such as preemption.

    Known reasons for the PodGroupScheduled condition: - "Unschedulable": The PodGroup cannot be scheduled due to resource constraints, affinity/anti-affinity rules, or insufficient capacity for the gang.

    • "SchedulerError": The PodGroup cannot be scheduled due to some internal error that happened during scheduling, for example due to nodeAffinity parsing errors.

    Known reasons for the DisruptionTarget condition: - "PreemptionByScheduler": The PodGroup was preempted by the scheduler to make room for higher-priority PodGroups or Pods.

    resourceClaimStatuses List<Property Map>
    Status of resource claims.

    PodGroupTemplateReferencePatch, PodGroupTemplateReferencePatchArgs

    PodGroupTemplateReference references a PodGroup template defined in some object (e.g. Workload). Exactly one reference must be set.
    Workload WorkloadPodGroupTemplateReferencePatch
    Workload references the PodGroupTemplate within the Workload object that was used to create the PodGroup.
    Workload WorkloadPodGroupTemplateReferencePatch
    Workload references the PodGroupTemplate within the Workload object that was used to create the PodGroup.
    workload WorkloadPodGroupTemplateReferencePatch
    Workload references the PodGroupTemplate within the Workload object that was used to create the PodGroup.
    workload WorkloadPodGroupTemplateReferencePatch
    Workload references the PodGroupTemplate within the Workload object that was used to create the PodGroup.
    workload WorkloadPodGroupTemplateReferencePatch
    Workload references the PodGroupTemplate within the Workload object that was used to create the PodGroup.
    workload Property Map
    Workload references the PodGroupTemplate within the Workload object that was used to create the PodGroup.

    TopologyConstraintPatch, TopologyConstraintPatchArgs

    TopologyConstraint defines a topology constraint for a PodGroup.
    Key string
    Key specifies the key of the node label representing the topology domain. All pods within the PodGroup must be colocated within the same domain instance. Different PodGroups can land on different domain instances even if they derive from the same PodGroupTemplate. Examples: "topology.kubernetes.io/rack"
    Key string
    Key specifies the key of the node label representing the topology domain. All pods within the PodGroup must be colocated within the same domain instance. Different PodGroups can land on different domain instances even if they derive from the same PodGroupTemplate. Examples: "topology.kubernetes.io/rack"
    key String
    Key specifies the key of the node label representing the topology domain. All pods within the PodGroup must be colocated within the same domain instance. Different PodGroups can land on different domain instances even if they derive from the same PodGroupTemplate. Examples: "topology.kubernetes.io/rack"
    key string
    Key specifies the key of the node label representing the topology domain. All pods within the PodGroup must be colocated within the same domain instance. Different PodGroups can land on different domain instances even if they derive from the same PodGroupTemplate. Examples: "topology.kubernetes.io/rack"
    key str
    Key specifies the key of the node label representing the topology domain. All pods within the PodGroup must be colocated within the same domain instance. Different PodGroups can land on different domain instances even if they derive from the same PodGroupTemplate. Examples: "topology.kubernetes.io/rack"
    key String
    Key specifies the key of the node label representing the topology domain. All pods within the PodGroup must be colocated within the same domain instance. Different PodGroups can land on different domain instances even if they derive from the same PodGroupTemplate. Examples: "topology.kubernetes.io/rack"

    WorkloadPodGroupTemplateReferencePatch, WorkloadPodGroupTemplateReferencePatchArgs

    WorkloadPodGroupTemplateReference references the PodGroupTemplate within the Workload object.
    PodGroupTemplateName string
    PodGroupTemplateName defines the PodGroupTemplate name within the Workload object.
    WorkloadName string
    WorkloadName defines the name of the Workload object.
    PodGroupTemplateName string
    PodGroupTemplateName defines the PodGroupTemplate name within the Workload object.
    WorkloadName string
    WorkloadName defines the name of the Workload object.
    podGroupTemplateName String
    PodGroupTemplateName defines the PodGroupTemplate name within the Workload object.
    workloadName String
    WorkloadName defines the name of the Workload object.
    podGroupTemplateName string
    PodGroupTemplateName defines the PodGroupTemplate name within the Workload object.
    workloadName string
    WorkloadName defines the name of the Workload object.
    pod_group_template_name str
    PodGroupTemplateName defines the PodGroupTemplate name within the Workload object.
    workload_name str
    WorkloadName defines the name of the Workload object.
    podGroupTemplateName String
    PodGroupTemplateName defines the PodGroupTemplate name within the Workload object.
    workloadName String
    WorkloadName defines the name of the Workload object.

    Package Details

    Repository
    Kubernetes pulumi/pulumi-kubernetes
    License
    Apache-2.0
    kubernetes logo
    Viewing docs for Kubernetes v4.30.0
    published on Friday, Apr 24, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.