Show / Hide Table of Contents

Class SchedulingArgs

Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.

Inheritance
System.Object
InputArgs
ResourceArgs
SchedulingArgs
Inherited Members
ResourceArgs.Empty
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.Inputs.Node.V1Alpha1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class SchedulingArgs : ResourceArgs

Properties

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 InputMap<string> NodeSelector { get; set; }
Property Value
Type Description
InputMap<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 InputList<TolerationArgs> Tolerations { get; set; }
Property Value
Type Description
InputList<TolerationArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.