Package-level declarations

Types

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

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

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

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

Link copied to clipboard
Link copied to clipboard
data class RuntimeClassArgs(val apiVersion: Output<String>? = null, val handler: Output<String>, val kind: Output<String>? = null, val metadata: Output<ObjectMetaArgs>? = null, val overhead: Output<OverheadArgs>? = null, val scheduling: Output<SchedulingArgs>? = null) : ConvertibleToJava<RuntimeClassArgs>

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 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://kubernetes.io/docs/concepts/containers/runtime-class/

Link copied to clipboard
Link copied to clipboard
data class SchedulingArgs(val nodeSelector: Output<Map<String, String>>? = null, val tolerations: Output<List<TolerationArgs>>? = null) : ConvertibleToJava<SchedulingArgs>

Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.

Link copied to clipboard
Link copied to clipboard
data class SchedulingPatchArgs(val nodeSelector: Output<Map<String, String>>? = null, val tolerations: Output<List<TolerationPatchArgs>>? = null) : ConvertibleToJava<SchedulingPatchArgs>

Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.