Runtime Class Args
data class RuntimeClassArgs(val apiVersion: Output<String>? = null, val kind: Output<String>? = null, val metadata: Output<ObjectMetaArgs>? = null, val spec: Output<RuntimeClassSpecArgs>) : 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 (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
Constructors
Link copied to clipboard
fun RuntimeClassArgs(apiVersion: Output<String>? = null, kind: Output<String>? = null, metadata: Output<ObjectMetaArgs>? = null, spec: Output<RuntimeClassSpecArgs>)