Show / Hide Table of Contents

Class Scheduling

Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.

Inheritance
System.Object
Scheduling
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Outputs.Node.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public sealed class Scheduling

Fields

View Source

NodeSelector

nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.

Declaration
public readonly ImmutableDictionary<string, string> NodeSelector
Field Value
Type Description
System.Collections.Immutable.ImmutableDictionary<System.String, System.String>
View Source

Tolerations

tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.

Declaration
public readonly ImmutableArray<Toleration> Tolerations
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<Toleration>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.