Struct k8s_openapi::api::node::v1::RuntimeClass
source · pub struct RuntimeClass {
pub handler: String,
pub metadata: ObjectMeta,
pub overhead: Option<Overhead>,
pub scheduling: Option<Scheduling>,
}
Expand description
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/
Fields§
§handler: String
handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called “runc” might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.
metadata: ObjectMeta
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
overhead: Option<Overhead>
overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://kubernetes.io/docs/concepts/scheduling-eviction/pod-overhead/
scheduling: Option<Scheduling>
scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes.
Trait Implementations§
source§impl Clone for RuntimeClass
impl Clone for RuntimeClass
source§fn clone(&self) -> RuntimeClass
fn clone(&self) -> RuntimeClass
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RuntimeClass
impl Debug for RuntimeClass
source§impl DeepMerge for RuntimeClass
impl DeepMerge for RuntimeClass
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
other
into self
.source§impl Default for RuntimeClass
impl Default for RuntimeClass
source§fn default() -> RuntimeClass
fn default() -> RuntimeClass
source§impl<'de> Deserialize<'de> for RuntimeClass
impl<'de> Deserialize<'de> for RuntimeClass
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
source§impl ListableResource for RuntimeClass
impl ListableResource for RuntimeClass
source§impl Metadata for RuntimeClass
impl Metadata for RuntimeClass
source§impl PartialEq for RuntimeClass
impl PartialEq for RuntimeClass
source§impl Resource for RuntimeClass
impl Resource for RuntimeClass
source§const API_VERSION: &'static str = "node.k8s.io/v1"
const API_VERSION: &'static str = "node.k8s.io/v1"
Resource::GROUP
and Resource::VERSION
(eg "apiextensions.k8s.io/v1beta1"
)
or just the version for resources without a group (eg "v1"
). Read moresource§const GROUP: &'static str = "node.k8s.io"
const GROUP: &'static str = "node.k8s.io"
source§const URL_PATH_SEGMENT: &'static str = "runtimeclasses"
const URL_PATH_SEGMENT: &'static str = "runtimeclasses"
source§type Scope = ClusterResourceScope
type Scope = ClusterResourceScope
source§impl Serialize for RuntimeClass
impl Serialize for RuntimeClass
impl StructuralPartialEq for RuntimeClass
Auto Trait Implementations§
impl Freeze for RuntimeClass
impl RefUnwindSafe for RuntimeClass
impl Send for RuntimeClass
impl Sync for RuntimeClass
impl Unpin for RuntimeClass
impl UnwindSafe for RuntimeClass
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)