Documentation ¶
Index ¶
- Constants
- Variables
- func Resource(resource string) schema.GroupResource
- type PriorityClass
- type PriorityClassList
- func (v *PriorityClassList) GroupVersionKind() schema.GroupVersionKind
- func (v PriorityClassList) MarshalEasyJSON(w *jwriter.Writer)
- func (v PriorityClassList) MarshalJSON() ([]byte, error)
- func (v *PriorityClassList) UnmarshalEasyJSON(l *jlexer.Lexer)
- func (v *PriorityClassList) UnmarshalJSON(data []byte) error
Constants ¶
const GroupName = "scheduling.k8s.io"
GroupName is the group name use in this package
Variables ¶
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1"}
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 PriorityClass ¶
type PriorityClass 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/sig-architecture/api-conventions.md#resources APIVersion string `json:"apiVersion,omitempty"` // description is an arbitrary string that usually provides guidelines on when this priority class should be used. Description string `json:"description,omitempty"` // globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. GlobalDefault bool `json:"globalDefault,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/sig-architecture/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"` // PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate. PreemptionPolicy string `json:"preemptionPolicy,omitempty"` // The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec. // Required: true Value *int32 `json:"value"` }
PriorityClass PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.
swagger:model PriorityClass
func (*PriorityClass) GroupVersionKind ¶
func (v *PriorityClass) GroupVersionKind() schema.GroupVersionKind
func (PriorityClass) MarshalEasyJSON ¶
func (v PriorityClass) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (PriorityClass) MarshalJSON ¶
func (v PriorityClass) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*PriorityClass) UnmarshalEasyJSON ¶
func (v *PriorityClass) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*PriorityClass) UnmarshalJSON ¶
func (v *PriorityClass) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type PriorityClassList ¶
type PriorityClassList 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/sig-architecture/api-conventions.md#resources APIVersion string `json:"apiVersion,omitempty"` // items is the list of PriorityClasses // Required: true Items []*PriorityClass `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/sig-architecture/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"` }
PriorityClassList PriorityClassList is a collection of priority classes.
swagger:model PriorityClassList
func (*PriorityClassList) GroupVersionKind ¶
func (v *PriorityClassList) GroupVersionKind() schema.GroupVersionKind
func (PriorityClassList) MarshalEasyJSON ¶
func (v PriorityClassList) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (PriorityClassList) MarshalJSON ¶
func (v PriorityClassList) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*PriorityClassList) UnmarshalEasyJSON ¶
func (v *PriorityClassList) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*PriorityClassList) UnmarshalJSON ¶
func (v *PriorityClassList) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface