blob: ada9eaf85b03823d37298cf81a11fc12b8ce17bd [file] [log] [blame]
Zack Williamse940c7a2019-08-21 14:25:39 -07001/*
2Copyright The Kubernetes Authors.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17
18// This file was autogenerated by go-to-protobuf. Do not edit it manually!
19
20syntax = 'proto2';
21
22package k8s.io.api.scheduling.v1;
23
24import "k8s.io/api/core/v1/generated.proto";
25import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
26import "k8s.io/apimachinery/pkg/runtime/generated.proto";
27import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
28
29// Package-wide variables from generator "generated".
30option go_package = "v1";
31
32// PriorityClass defines mapping from a priority class name to the priority
33// integer value. The value can be any valid integer.
34message PriorityClass {
35 // Standard object's metadata.
36 // More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
37 // +optional
38 optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
39
40 // The value of this priority class. This is the actual priority that pods
41 // receive when they have the name of this class in their pod spec.
42 optional int32 value = 2;
43
44 // globalDefault specifies whether this PriorityClass should be considered as
45 // the default priority for pods that do not have any priority class.
46 // Only one PriorityClass can be marked as `globalDefault`. However, if more than
47 // one PriorityClasses exists with their `globalDefault` field set to true,
48 // the smallest value of such global default PriorityClasses will be used as the default priority.
49 // +optional
50 optional bool globalDefault = 3;
51
52 // description is an arbitrary string that usually provides guidelines on
53 // when this priority class should be used.
54 // +optional
55 optional string description = 4;
56
57 // PreemptionPolicy is the Policy for preempting pods with lower priority.
58 // One of Never, PreemptLowerPriority.
59 // Defaults to PreemptLowerPriority if unset.
60 // This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.
61 // +optional
62 optional string preemptionPolicy = 5;
63}
64
65// PriorityClassList is a collection of priority classes.
66message PriorityClassList {
67 // Standard list metadata
68 // More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
69 // +optional
70 optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
71
72 // items is the list of PriorityClasses
73 repeated PriorityClass items = 2;
74}
75