Skip to content

scheduling_v1alpha2

BasicSchedulingPolicy

GangSchedulingPolicy

class lightkube.models.scheduling_v1alpha2.GangSchedulingPolicy(minCount)

GangSchedulingPolicy defines the parameters for gang scheduling.

parameters

  • 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.

PodGroup

class lightkube.models.scheduling_v1alpha2.PodGroup(spec, apiVersion=None, kind=None, metadata=None, status=None)

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.

parameters

  • spec PodGroupSpec - Spec defines the desired state of the PodGroup.
  • apiVersion Optional[str] - APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info
  • kind Optional[str] - Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info
  • metadata Optional[meta_v1.ObjectMeta] - Standard object's metadata. More info
  • status Optional[PodGroupStatus] - Status represents the current observed state of the PodGroup.

PodGroupList

class lightkube.models.scheduling_v1alpha2.PodGroupList(items, apiVersion=None, kind=None, metadata=None)

PodGroupList contains a list of PodGroup resources.

parameters

  • items List[PodGroup] - Items is the list of PodGroups.
  • apiVersion Optional[str] - APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info
  • kind Optional[str] - Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info
  • metadata Optional[meta_v1.ListMeta] - Standard list metadata.

PodGroupResourceClaim

class lightkube.models.scheduling_v1alpha2.PodGroupResourceClaim(name, resourceClaimName=None, resourceClaimTemplateName=None)

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.

parameters

  • name str - Name uniquely identifies this resource claim inside the PodGroup. This must be a DNS_LABEL.
  • resourceClaimName Optional[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.
  • resourceClaimTemplateName Optional[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.

PodGroupResourceClaimStatus

class lightkube.models.scheduling_v1alpha2.PodGroupResourceClaimStatus(name, resourceClaimName=None)

PodGroupResourceClaimStatus is stored in the PodGroupStatus for each PodGroupResourceClaim which references a ResourceClaimTemplate. It stores the generated name for the corresponding ResourceClaim.

parameters

  • 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.
  • resourceClaimName Optional[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.

PodGroupSchedulingConstraints

class lightkube.models.scheduling_v1alpha2.PodGroupSchedulingConstraints(topology=None)

PodGroupSchedulingConstraints defines scheduling constraints (e.g. topology) for a PodGroup.

parameters

  • topology Optional[List[TopologyConstraint]] - Topology defines the topology constraints for the pod group. Currently only a single topology constraint can be specified. This may change in the future.

PodGroupSchedulingPolicy

class lightkube.models.scheduling_v1alpha2.PodGroupSchedulingPolicy(basic=None, gang=None)

PodGroupSchedulingPolicy defines the scheduling configuration for a PodGroup. Exactly one policy must be set.

parameters

  • basic Optional[BasicSchedulingPolicy] - Basic specifies that the pods in this group should be scheduled using standard Kubernetes scheduling behavior.
  • gang Optional[GangSchedulingPolicy] - Gang specifies that the pods in this group should be scheduled using all-or-nothing semantics.

PodGroupSpec

class lightkube.models.scheduling_v1alpha2.PodGroupSpec(schedulingPolicy, disruptionMode=None, podGroupTemplateRef=None, priority=None, priorityClassName=None, resourceClaims=None, schedulingConstraints=None)

PodGroupSpec defines the desired state of a PodGroup.

parameters

  • schedulingPolicy PodGroupSchedulingPolicy - 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 Optional[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.
  • podGroupTemplateRef Optional[PodGroupTemplateReference] - PodGroupTemplateRef references an optional PodGroup template within other object (e.g. Workload) that was used to create the PodGroup. This field is immutable.
  • priority Optional[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 Optional[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.
  • resourceClaims Optional[List[PodGroupResourceClaim]] - 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 Optional[PodGroupSchedulingConstraints] - 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.

PodGroupStatus

class lightkube.models.scheduling_v1alpha2.PodGroupStatus(conditions=None, resourceClaimStatuses=None)

PodGroupStatus represents information about the status of a pod group.

parameters

  • conditions Optional[List[meta_v1.Condition]] - 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 Optional[List[PodGroupResourceClaimStatus]] - Status of resource claims.

PodGroupTemplate

class lightkube.models.scheduling_v1alpha2.PodGroupTemplate(name, schedulingPolicy, disruptionMode=None, priority=None, priorityClassName=None, resourceClaims=None, schedulingConstraints=None)

PodGroupTemplate represents a template for a set of pods with a scheduling policy.

parameters

  • name str - Name is a unique identifier for the PodGroupTemplate within the Workload. It must be a DNS label. This field is immutable.
  • schedulingPolicy PodGroupSchedulingPolicy - SchedulingPolicy defines the scheduling policy for this PodGroupTemplate.
  • disruptionMode Optional[str] - DisruptionMode defines the mode in which a given PodGroup can be disrupted. One of Pod, PodGroup. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
  • priority Optional[int] - Priority is the value of priority of pod groups created from this template. 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 available only when the WorkloadAwarePreemption feature gate is enabled.
  • priorityClassName Optional[str] - PriorityClassName indicates the priority that should be considered when scheduling a pod group created from this template. If no priority class is specified, admission control can set this to the global default priority class if it exists. Otherwise, pod groups created from this template will have the priority set to zero. This field is available only when the WorkloadAwarePreemption feature gate is enabled.
  • resourceClaims Optional[List[PodGroupResourceClaim]] - 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 Optional[PodGroupSchedulingConstraints] - SchedulingConstraints defines optional scheduling constraints (e.g. topology) for this PodGroupTemplate. This field is only available when the TopologyAwareWorkloadScheduling feature gate is enabled.

PodGroupTemplateReference

class lightkube.models.scheduling_v1alpha2.PodGroupTemplateReference(workload=None)

PodGroupTemplateReference references a PodGroup template defined in some object (e.g. Workload). Exactly one reference must be set.

parameters

TopologyConstraint

class lightkube.models.scheduling_v1alpha2.TopologyConstraint(key)

TopologyConstraint defines a topology constraint for a PodGroup.

parameters

  • 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"

TypedLocalObjectReference

class lightkube.models.scheduling_v1alpha2.TypedLocalObjectReference(kind, name, apiGroup=None)

TypedLocalObjectReference allows to reference typed object inside the same namespace.

parameters

  • kind str - Kind is the type of resource being referenced. It must be a path segment name.
  • name str - Name is the name of resource being referenced. It must be a path segment name.
  • apiGroup Optional[str] - APIGroup is the group for the resource being referenced. If APIGroup is empty, the specified Kind must be in the core API group. For any other third-party types, setting APIGroup is required. It must be a DNS subdomain.

Workload

class lightkube.models.scheduling_v1alpha2.Workload(spec, apiVersion=None, kind=None, metadata=None)

Workload allows for expressing scheduling constraints that should be used when managing the lifecycle of workloads from the scheduling perspective, including scheduling, preemption, eviction and other phases. Workload API enablement is toggled by the GenericWorkload feature gate.

parameters

  • spec WorkloadSpec - Spec defines the desired behavior of a Workload.
  • apiVersion Optional[str] - APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info
  • kind Optional[str] - Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info
  • metadata Optional[meta_v1.ObjectMeta] - Standard object's metadata. More info

WorkloadList

class lightkube.models.scheduling_v1alpha2.WorkloadList(items, apiVersion=None, kind=None, metadata=None)

WorkloadList contains a list of Workload resources.

parameters

  • items List[Workload] - Items is the list of Workloads.
  • apiVersion Optional[str] - APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info
  • kind Optional[str] - Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info
  • metadata Optional[meta_v1.ListMeta] - Standard list metadata.

WorkloadPodGroupTemplateReference

class lightkube.models.scheduling_v1alpha2.WorkloadPodGroupTemplateReference(podGroupTemplateName, workloadName)

WorkloadPodGroupTemplateReference references the PodGroupTemplate within the Workload object.

parameters

  • podGroupTemplateName str - PodGroupTemplateName defines the PodGroupTemplate name within the Workload object.
  • workloadName str - WorkloadName defines the name of the Workload object.

WorkloadSpec

class lightkube.models.scheduling_v1alpha2.WorkloadSpec(podGroupTemplates, controllerRef=None)

WorkloadSpec defines the desired state of a Workload.

parameters

  • podGroupTemplates List[PodGroupTemplate] - PodGroupTemplates is the list of templates that make up the Workload. The maximum number of templates is 8. This field is immutable.
  • controllerRef Optional[TypedLocalObjectReference] - ControllerRef is an optional reference to the controlling object, such as a Deployment or Job. This field is intended for use by tools like CLIs to provide a link back to the original workload definition. This field is immutable.