class K8S::Api::Node::V1::RuntimeClass
- K8S::Api::Node::V1::RuntimeClass
- K8S::Kubernetes::Resource
- Reference
- Object
Overview
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/
Included Modules
- JSON::Serializable
- K8S::Kubernetes::Resource::Object
- YAML::Serializable
Defined in:
versions/v1.23/api/node/v1/runtime_class.crConstructors
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- .new(pull : JSON::PullParser)
- .new(*, handler : String, metadata : Apimachinery::Apis::Meta::V1::ObjectMeta? = nil, overhead : Api::Node::V1::Overhead? = nil, scheduling : Api::Node::V1::Scheduling? = nil)
Class Method Summary
Instance Method Summary
- #api_version : String
- #handler : String
- #handler=(handler : String)
- #kind : String
- #merge(other)
- #metadata : Apimachinery::Apis::Meta::V1::ObjectMeta?
- #metadata=(metadata : Apimachinery::Apis::Meta::V1::ObjectMeta?)
- #overhead : Api::Node::V1::Overhead?
- #overhead=(overhead : Api::Node::V1::Overhead?)
- #scheduling : Api::Node::V1::Scheduling?
- #scheduling=(scheduling : Api::Node::V1::Scheduling?)
- #to_h
Instance methods inherited from module K8S::Kubernetes::Resource::Object
api_version : String
api_version,
kind : String
kind,
metadata : Apimachinery::Apis::Meta::V1::ObjectMeta?
metadata,
metadata! : Apimachinery::Apis::Meta::V1::ObjectMeta
metadata!
Instance methods inherited from class K8S::Kubernetes::Resource
api_version : String
api_version,
kind : String
kind
Constructor methods inherited from class K8S::Kubernetes::Resource
new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)new(pull : JSON::PullParser) new
Class methods inherited from class K8S::Kubernetes::Resource
from_file(file)
from_file
Constructor Detail
def self.new(*, handler : String, metadata : Apimachinery::Apis::Meta::V1::ObjectMeta? = nil, overhead : Api::Node::V1::Overhead? = nil, scheduling : Api::Node::V1::Scheduling? = nil)
#