Documentation ¶
Index ¶
- Constants
- Variables
- func Resource(resource string) schema.GroupResource
- type RuntimeClass
- type RuntimeClassList
- func (v *RuntimeClassList) GroupVersionKind() schema.GroupVersionKind
- func (v RuntimeClassList) MarshalEasyJSON(w *jwriter.Writer)
- func (v RuntimeClassList) MarshalJSON() ([]byte, error)
- func (v *RuntimeClassList) UnmarshalEasyJSON(l *jlexer.Lexer)
- func (v *RuntimeClassList) UnmarshalJSON(data []byte) error
- type RuntimeClassSpec
Constants ¶
const GroupName = "node.k8s.io"
GroupName is the group name use in this package
Variables ¶
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1alpha1"}
SchemeGroupVersion is group version used to register these objects
Functions ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type RuntimeClass ¶
type RuntimeClass struct { // APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources APIVersion string `json:"apiVersion,omitempty"` // Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"` // Specification of the RuntimeClass More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status // Required: true Spec *RuntimeClassSpec `json:"spec"` }
RuntimeClass 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
swagger:model RuntimeClass
func (*RuntimeClass) GroupVersionKind ¶
func (v *RuntimeClass) GroupVersionKind() schema.GroupVersionKind
func (RuntimeClass) MarshalEasyJSON ¶
func (v RuntimeClass) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (RuntimeClass) MarshalJSON ¶
func (v RuntimeClass) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*RuntimeClass) UnmarshalEasyJSON ¶
func (v *RuntimeClass) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*RuntimeClass) UnmarshalJSON ¶
func (v *RuntimeClass) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type RuntimeClassList ¶
type RuntimeClassList struct { // APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources APIVersion string `json:"apiVersion,omitempty"` // Items is a list of schema objects. // Required: true Items []*RuntimeClass `json:"items"` // Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"` }
RuntimeClassList RuntimeClassList is a list of RuntimeClass objects.
swagger:model RuntimeClassList
func (*RuntimeClassList) GroupVersionKind ¶
func (v *RuntimeClassList) GroupVersionKind() schema.GroupVersionKind
func (RuntimeClassList) MarshalEasyJSON ¶
func (v RuntimeClassList) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (RuntimeClassList) MarshalJSON ¶
func (v RuntimeClassList) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*RuntimeClassList) UnmarshalEasyJSON ¶
func (v *RuntimeClassList) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*RuntimeClassList) UnmarshalJSON ¶
func (v *RuntimeClassList) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type RuntimeClassSpec ¶
type RuntimeClassSpec struct { // RuntimeHandler 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 RuntimeHandler must conform to the DNS Label (RFC 1123) requirements and is immutable. // Required: true RuntimeHandler *string `json:"runtimeHandler"` }
RuntimeClassSpec RuntimeClassSpec is a specification of a RuntimeClass. It contains parameters that are required to describe the RuntimeClass to the Container Runtime Interface (CRI) implementation, as well as any other components that need to understand how the pod will be run. The RuntimeClassSpec is immutable.
swagger:model RuntimeClassSpec
func (RuntimeClassSpec) MarshalEasyJSON ¶
func (v RuntimeClassSpec) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (RuntimeClassSpec) MarshalJSON ¶
func (v RuntimeClassSpec) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*RuntimeClassSpec) UnmarshalEasyJSON ¶
func (v *RuntimeClassSpec) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*RuntimeClassSpec) UnmarshalJSON ¶
func (v *RuntimeClassSpec) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface