Documentation ¶
Index ¶
Constants ¶
View Source
const GroupName = "scheduling.k8s.io"
GroupName is the group name use in this package
Variables ¶
View Source
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/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/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/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 alpha-level and is only honored by servers that enable the NonPreemptingPriority feature. 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
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/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/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"` }
PriorityClassList PriorityClassList is a collection of priority classes.
swagger:model PriorityClassList
func (*PriorityClassList) GroupVersionKind ¶
func (v *PriorityClassList) GroupVersionKind() schema.GroupVersionKind
Click to show internal directories.
Click to hide internal directories.