Package-level declarations

Types

Link copied to clipboard
data class Overhead(val podFixed: Map<String, String>? = null)

Overhead structure represents the resource overhead associated with running a pod.

Link copied to clipboard
data class OverheadPatch(val podFixed: Map<String, String>? = null)

Overhead structure represents the resource overhead associated with running a pod.

Link copied to clipboard
data class RuntimeClass(val apiVersion: String? = null, val handler: String, val kind: String? = null, val metadata: ObjectMeta? = null, val overhead: Overhead? = null, val scheduling: Scheduling? = null)

RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md

Link copied to clipboard
data class Scheduling(val nodeSelector: Map<String, String>? = null, val tolerations: List<Toleration>? = null)

Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.

Link copied to clipboard
data class SchedulingPatch(val nodeSelector: Map<String, String>? = null, val tolerations: List<TolerationPatch>? = null)

Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.