mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-20 18:31:15 +00:00
add new GVK kubescheduler.config.k8s.io/v1alpha1.KubeSchedulerConfiguration
This commit is contained in:
parent
47ea5eac71
commit
9f506da2d4
11
pkg/scheduler/apis/config/OWNERS
Executable file
11
pkg/scheduler/apis/config/OWNERS
Executable file
@ -0,0 +1,11 @@
|
|||||||
|
approvers:
|
||||||
|
- api-approvers
|
||||||
|
- sig-scheduling-maintainers
|
||||||
|
- sttts
|
||||||
|
- luxas
|
||||||
|
reviewers:
|
||||||
|
- sig-scheduling
|
||||||
|
- api-reviewers
|
||||||
|
- dixudx
|
||||||
|
- luxas
|
||||||
|
- sttts
|
19
pkg/scheduler/apis/config/doc.go
Normal file
19
pkg/scheduler/apis/config/doc.go
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2018 The Kubernetes Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// +k8s:deepcopy-gen=package
|
||||||
|
|
||||||
|
package config // import "k8s.io/kubernetes/pkg/scheduler/apis/config"
|
43
pkg/scheduler/apis/config/register.go
Normal file
43
pkg/scheduler/apis/config/register.go
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2018 The Kubernetes Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package config
|
||||||
|
|
||||||
|
import (
|
||||||
|
"k8s.io/apimachinery/pkg/runtime"
|
||||||
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
// SchemeBuilder the schema builder
|
||||||
|
SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
|
||||||
|
// AddToScheme handler to add items to the schema
|
||||||
|
AddToScheme = SchemeBuilder.AddToScheme
|
||||||
|
)
|
||||||
|
|
||||||
|
// GroupName is the group name use in this package
|
||||||
|
const GroupName = "kubescheduler.config.k8s.io"
|
||||||
|
|
||||||
|
// SchemeGroupVersion is group version used to register these objects
|
||||||
|
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
|
||||||
|
|
||||||
|
// Adds the list of known types to the given scheme.
|
||||||
|
func addKnownTypes(scheme *runtime.Scheme) error {
|
||||||
|
scheme.AddKnownTypes(SchemeGroupVersion,
|
||||||
|
&KubeSchedulerConfiguration{},
|
||||||
|
)
|
||||||
|
return nil
|
||||||
|
}
|
44
pkg/scheduler/apis/config/scheme/scheme.go
Normal file
44
pkg/scheduler/apis/config/scheme/scheme.go
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2018 The Kubernetes Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package scheme
|
||||||
|
|
||||||
|
import (
|
||||||
|
"k8s.io/apimachinery/pkg/runtime"
|
||||||
|
"k8s.io/apimachinery/pkg/runtime/serializer"
|
||||||
|
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
|
||||||
|
kubeschedulerconfig "k8s.io/kubernetes/pkg/scheduler/apis/config"
|
||||||
|
kubeschedulerconfigv1alpha1 "k8s.io/kubernetes/pkg/scheduler/apis/config/v1alpha1"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
// Scheme is the runtime.Scheme to which all kubescheduler api types are registered.
|
||||||
|
Scheme = runtime.NewScheme()
|
||||||
|
|
||||||
|
// Codecs provides access to encoding and decoding for the scheme.
|
||||||
|
Codecs = serializer.NewCodecFactory(Scheme)
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
AddToScheme(Scheme)
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddToScheme builds the kubescheduler scheme using all known versions of the kubescheduler api.
|
||||||
|
func AddToScheme(scheme *runtime.Scheme) {
|
||||||
|
utilruntime.Must(kubeschedulerconfig.AddToScheme(Scheme))
|
||||||
|
utilruntime.Must(kubeschedulerconfigv1alpha1.AddToScheme(Scheme))
|
||||||
|
utilruntime.Must(scheme.SetVersionPriority(kubeschedulerconfigv1alpha1.SchemeGroupVersion))
|
||||||
|
}
|
132
pkg/scheduler/apis/config/types.go
Normal file
132
pkg/scheduler/apis/config/types.go
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2018 The Kubernetes Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package config
|
||||||
|
|
||||||
|
import (
|
||||||
|
apimachineryconfig "k8s.io/apimachinery/pkg/apis/config"
|
||||||
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||||
|
apiserverconfig "k8s.io/apiserver/pkg/apis/config"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// SchedulerDefaultLockObjectNamespace defines default scheduler lock object namespace ("kube-system")
|
||||||
|
SchedulerDefaultLockObjectNamespace string = metav1.NamespaceSystem
|
||||||
|
|
||||||
|
// SchedulerDefaultLockObjectName defines default scheduler lock object name ("kube-scheduler")
|
||||||
|
SchedulerDefaultLockObjectName = "kube-scheduler"
|
||||||
|
|
||||||
|
// SchedulerPolicyConfigMapKey defines the key of the element in the
|
||||||
|
// scheduler's policy ConfigMap that contains scheduler's policy config.
|
||||||
|
SchedulerPolicyConfigMapKey = "policy.cfg"
|
||||||
|
|
||||||
|
// SchedulerDefaultProviderName defines the default provider names
|
||||||
|
SchedulerDefaultProviderName = "DefaultProvider"
|
||||||
|
)
|
||||||
|
|
||||||
|
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
|
||||||
|
|
||||||
|
// KubeSchedulerConfiguration configures a scheduler
|
||||||
|
type KubeSchedulerConfiguration struct {
|
||||||
|
metav1.TypeMeta
|
||||||
|
|
||||||
|
// SchedulerName is name of the scheduler, used to select which pods
|
||||||
|
// will be processed by this scheduler, based on pod's "spec.SchedulerName".
|
||||||
|
SchedulerName string
|
||||||
|
// AlgorithmSource specifies the scheduler algorithm source.
|
||||||
|
AlgorithmSource SchedulerAlgorithmSource
|
||||||
|
// RequiredDuringScheduling affinity is not symmetric, but there is an implicit PreferredDuringScheduling affinity rule
|
||||||
|
// corresponding to every RequiredDuringScheduling affinity rule.
|
||||||
|
// HardPodAffinitySymmetricWeight represents the weight of implicit PreferredDuringScheduling affinity rule, in the range 0-100.
|
||||||
|
HardPodAffinitySymmetricWeight int32
|
||||||
|
|
||||||
|
// LeaderElection defines the configuration of leader election client.
|
||||||
|
LeaderElection KubeSchedulerLeaderElectionConfiguration
|
||||||
|
|
||||||
|
// ClientConnection specifies the kubeconfig file and client connection
|
||||||
|
// settings for the proxy server to use when communicating with the apiserver.
|
||||||
|
ClientConnection apimachineryconfig.ClientConnectionConfiguration
|
||||||
|
// HealthzBindAddress is the IP address and port for the health check server to serve on,
|
||||||
|
// defaulting to 0.0.0.0:10251
|
||||||
|
HealthzBindAddress string
|
||||||
|
// MetricsBindAddress is the IP address and port for the metrics server to
|
||||||
|
// serve on, defaulting to 0.0.0.0:10251.
|
||||||
|
MetricsBindAddress string
|
||||||
|
|
||||||
|
// DebuggingConfiguration holds configuration for Debugging related features
|
||||||
|
// TODO: We might wanna make this a substruct like Debugging apiserverconfig.DebuggingConfiguration
|
||||||
|
apiserverconfig.DebuggingConfiguration
|
||||||
|
|
||||||
|
// DisablePreemption disables the pod preemption feature.
|
||||||
|
DisablePreemption bool
|
||||||
|
|
||||||
|
// PercentageOfNodeToScore is the percentage of all nodes that once found feasible
|
||||||
|
// for running a pod, the scheduler stops its search for more feasible nodes in
|
||||||
|
// the cluster. This helps improve scheduler's performance. Scheduler always tries to find
|
||||||
|
// at least "minFeasibleNodesToFind" feasible nodes no matter what the value of this flag is.
|
||||||
|
// Example: if the cluster size is 500 nodes and the value of this flag is 30,
|
||||||
|
// then scheduler stops finding further feasible nodes once it finds 150 feasible ones.
|
||||||
|
// When the value is 0, default percentage (50%) of the nodes will be scored.
|
||||||
|
PercentageOfNodesToScore int32
|
||||||
|
|
||||||
|
// DEPRECATED.
|
||||||
|
// Indicate the "all topologies" set for empty topologyKey when it's used for PreferredDuringScheduling pod anti-affinity.
|
||||||
|
FailureDomains string
|
||||||
|
}
|
||||||
|
|
||||||
|
// SchedulerAlgorithmSource is the source of a scheduler algorithm. One source
|
||||||
|
// field must be specified, and source fields are mutually exclusive.
|
||||||
|
type SchedulerAlgorithmSource struct {
|
||||||
|
// Policy is a policy based algorithm source.
|
||||||
|
Policy *SchedulerPolicySource
|
||||||
|
// Provider is the name of a scheduling algorithm provider to use.
|
||||||
|
Provider *string
|
||||||
|
}
|
||||||
|
|
||||||
|
// SchedulerPolicySource configures a means to obtain a scheduler Policy. One
|
||||||
|
// source field must be specified, and source fields are mutually exclusive.
|
||||||
|
type SchedulerPolicySource struct {
|
||||||
|
// File is a file policy source.
|
||||||
|
File *SchedulerPolicyFileSource
|
||||||
|
// ConfigMap is a config map policy source.
|
||||||
|
ConfigMap *SchedulerPolicyConfigMapSource
|
||||||
|
}
|
||||||
|
|
||||||
|
// SchedulerPolicyFileSource is a policy serialized to disk and accessed via
|
||||||
|
// path.
|
||||||
|
type SchedulerPolicyFileSource struct {
|
||||||
|
// Path is the location of a serialized policy.
|
||||||
|
Path string
|
||||||
|
}
|
||||||
|
|
||||||
|
// SchedulerPolicyConfigMapSource is a policy serialized into a config map value
|
||||||
|
// under the SchedulerPolicyConfigMapKey key.
|
||||||
|
type SchedulerPolicyConfigMapSource struct {
|
||||||
|
// Namespace is the namespace of the policy config map.
|
||||||
|
Namespace string
|
||||||
|
// Name is the name of hte policy config map.
|
||||||
|
Name string
|
||||||
|
}
|
||||||
|
|
||||||
|
// KubeSchedulerLeaderElectionConfiguration expands LeaderElectionConfiguration
|
||||||
|
// to include scheduler specific configuration.
|
||||||
|
type KubeSchedulerLeaderElectionConfiguration struct {
|
||||||
|
apiserverconfig.LeaderElectionConfiguration
|
||||||
|
// LockObjectNamespace defines the namespace of the lock object
|
||||||
|
LockObjectNamespace string
|
||||||
|
// LockObjectName defines the lock object name
|
||||||
|
LockObjectName string
|
||||||
|
}
|
105
pkg/scheduler/apis/config/v1alpha1/defaults.go
Normal file
105
pkg/scheduler/apis/config/v1alpha1/defaults.go
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2018 The Kubernetes Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package v1alpha1
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net"
|
||||||
|
"strconv"
|
||||||
|
|
||||||
|
"k8s.io/apimachinery/pkg/runtime"
|
||||||
|
apiserverconfigv1alpha1 "k8s.io/apiserver/pkg/apis/config/v1alpha1"
|
||||||
|
kubescedulerconfigv1alpha1 "k8s.io/kube-scheduler/config/v1alpha1"
|
||||||
|
// this package shouldn't really depend on other k8s.io/kubernetes code
|
||||||
|
api "k8s.io/kubernetes/pkg/apis/core"
|
||||||
|
kubeletapis "k8s.io/kubernetes/pkg/kubelet/apis"
|
||||||
|
"k8s.io/kubernetes/pkg/master/ports"
|
||||||
|
)
|
||||||
|
|
||||||
|
func addDefaultingFuncs(scheme *runtime.Scheme) error {
|
||||||
|
return RegisterDefaults(scheme)
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetDefaults_KubeSchedulerConfiguration sets additional defaults
|
||||||
|
func SetDefaults_KubeSchedulerConfiguration(obj *kubescedulerconfigv1alpha1.KubeSchedulerConfiguration) {
|
||||||
|
if len(obj.SchedulerName) == 0 {
|
||||||
|
obj.SchedulerName = api.DefaultSchedulerName
|
||||||
|
}
|
||||||
|
|
||||||
|
if obj.HardPodAffinitySymmetricWeight == 0 {
|
||||||
|
obj.HardPodAffinitySymmetricWeight = api.DefaultHardPodAffinitySymmetricWeight
|
||||||
|
}
|
||||||
|
|
||||||
|
if obj.AlgorithmSource.Policy == nil &&
|
||||||
|
(obj.AlgorithmSource.Provider == nil || len(*obj.AlgorithmSource.Provider) == 0) {
|
||||||
|
val := kubescedulerconfigv1alpha1.SchedulerDefaultProviderName
|
||||||
|
obj.AlgorithmSource.Provider = &val
|
||||||
|
}
|
||||||
|
|
||||||
|
if policy := obj.AlgorithmSource.Policy; policy != nil {
|
||||||
|
if policy.ConfigMap != nil && len(policy.ConfigMap.Namespace) == 0 {
|
||||||
|
obj.AlgorithmSource.Policy.ConfigMap.Namespace = api.NamespaceSystem
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if host, port, err := net.SplitHostPort(obj.HealthzBindAddress); err == nil {
|
||||||
|
if len(host) == 0 {
|
||||||
|
host = "0.0.0.0"
|
||||||
|
}
|
||||||
|
obj.HealthzBindAddress = net.JoinHostPort(host, port)
|
||||||
|
} else {
|
||||||
|
obj.HealthzBindAddress = net.JoinHostPort("0.0.0.0", strconv.Itoa(ports.SchedulerPort))
|
||||||
|
}
|
||||||
|
|
||||||
|
if host, port, err := net.SplitHostPort(obj.MetricsBindAddress); err == nil {
|
||||||
|
if len(host) == 0 {
|
||||||
|
host = "0.0.0.0"
|
||||||
|
}
|
||||||
|
obj.MetricsBindAddress = net.JoinHostPort(host, port)
|
||||||
|
} else {
|
||||||
|
obj.MetricsBindAddress = net.JoinHostPort("0.0.0.0", strconv.Itoa(ports.SchedulerPort))
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(obj.LeaderElection.LockObjectNamespace) == 0 {
|
||||||
|
obj.LeaderElection.LockObjectNamespace = kubescedulerconfigv1alpha1.SchedulerDefaultLockObjectNamespace
|
||||||
|
}
|
||||||
|
if len(obj.LeaderElection.LockObjectName) == 0 {
|
||||||
|
obj.LeaderElection.LockObjectName = kubescedulerconfigv1alpha1.SchedulerDefaultLockObjectName
|
||||||
|
}
|
||||||
|
|
||||||
|
if obj.PercentageOfNodesToScore == 0 {
|
||||||
|
// by default, stop finding feasible nodes once the number of feasible nodes is 50% of the cluster.
|
||||||
|
obj.PercentageOfNodesToScore = 50
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(obj.FailureDomains) == 0 {
|
||||||
|
obj.FailureDomains = kubeletapis.DefaultFailureDomains
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(obj.ClientConnection.ContentType) == 0 {
|
||||||
|
obj.ClientConnection.ContentType = "application/vnd.kubernetes.protobuf"
|
||||||
|
}
|
||||||
|
// Scheduler has an opinion about QPS/Burst, setting specific defaults for itself, instead of generic settings.
|
||||||
|
if obj.ClientConnection.QPS == 0.0 {
|
||||||
|
obj.ClientConnection.QPS = 50.0
|
||||||
|
}
|
||||||
|
if obj.ClientConnection.Burst == 0 {
|
||||||
|
obj.ClientConnection.Burst = 100
|
||||||
|
}
|
||||||
|
|
||||||
|
// Use the default LeaderElectionConfiguration options
|
||||||
|
apiserverconfigv1alpha1.RecommendedDefaultLeaderElectionConfiguration(&obj.LeaderElection.LeaderElectionConfiguration)
|
||||||
|
}
|
64
pkg/scheduler/apis/config/v1alpha1/defaults_test.go
Normal file
64
pkg/scheduler/apis/config/v1alpha1/defaults_test.go
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2018 The Kubernetes Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package v1alpha1
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"reflect"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"k8s.io/api/core/v1"
|
||||||
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||||
|
"k8s.io/apimachinery/pkg/runtime"
|
||||||
|
kubeschedulerconfigv1alpha1 "k8s.io/kube-scheduler/config/v1alpha1"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestSchedulerDefaults(t *testing.T) {
|
||||||
|
ks1 := &kubeschedulerconfigv1alpha1.KubeSchedulerConfiguration{}
|
||||||
|
SetDefaults_KubeSchedulerConfiguration(ks1)
|
||||||
|
cm, err := convertObjToConfigMap("KubeSchedulerConfiguration", ks1)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("unexpected ConvertObjToConfigMap error %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
ks2 := &kubeschedulerconfigv1alpha1.KubeSchedulerConfiguration{}
|
||||||
|
if err = json.Unmarshal([]byte(cm.Data["KubeSchedulerConfiguration"]), ks2); err != nil {
|
||||||
|
t.Errorf("unexpected error unserializing scheduler config %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !reflect.DeepEqual(ks2, ks1) {
|
||||||
|
t.Errorf("Expected:\n%#v\n\nGot:\n%#v", ks1, ks2)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ConvertObjToConfigMap converts an object to a ConfigMap.
|
||||||
|
// This is specifically meant for ComponentConfigs.
|
||||||
|
func convertObjToConfigMap(name string, obj runtime.Object) (*v1.ConfigMap, error) {
|
||||||
|
eJSONBytes, err := json.Marshal(obj)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
cm := &v1.ConfigMap{
|
||||||
|
ObjectMeta: metav1.ObjectMeta{
|
||||||
|
Name: name,
|
||||||
|
},
|
||||||
|
Data: map[string]string{
|
||||||
|
name: string(eJSONBytes[:]),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
return cm, nil
|
||||||
|
}
|
23
pkg/scheduler/apis/config/v1alpha1/doc.go
Normal file
23
pkg/scheduler/apis/config/v1alpha1/doc.go
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2018 The Kubernetes Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// +k8s:deepcopy-gen=package
|
||||||
|
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/scheduler/apis/config
|
||||||
|
// +k8s:conversion-gen-external-types=k8s.io/kube-scheduler/config/v1alpha1
|
||||||
|
// +k8s:defaulter-gen=TypeMeta
|
||||||
|
// +k8s:defaulter-gen-input=../../../../../vendor/k8s.io/kube-scheduler/config/v1alpha1
|
||||||
|
|
||||||
|
package v1alpha1 // import "k8s.io/kubernetes/pkg/scheduler/apis/config/v1alpha1"
|
40
pkg/scheduler/apis/config/v1alpha1/register.go
Normal file
40
pkg/scheduler/apis/config/v1alpha1/register.go
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2018 The Kubernetes Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package v1alpha1
|
||||||
|
|
||||||
|
import (
|
||||||
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
||||||
|
kubeschedulerconfigv1alpha1 "k8s.io/kube-scheduler/config/v1alpha1"
|
||||||
|
)
|
||||||
|
|
||||||
|
// GroupName is the group name use in this package
|
||||||
|
const GroupName = "kubescheduler.config.k8s.io"
|
||||||
|
|
||||||
|
// SchemeGroupVersion is group version used to register these objects
|
||||||
|
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1alpha1"}
|
||||||
|
|
||||||
|
var (
|
||||||
|
localSchemeBuilder = &kubeschedulerconfigv1alpha1.SchemeBuilder
|
||||||
|
AddToScheme = localSchemeBuilder.AddToScheme
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
// We only register manually written functions here. The registration of the
|
||||||
|
// generated functions takes place in the generated files. The separation
|
||||||
|
// makes the code compile even when the generated files are missing.
|
||||||
|
localSchemeBuilder.Register(addDefaultingFuncs)
|
||||||
|
}
|
2
staging/src/k8s.io/kube-scheduler/.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
2
staging/src/k8s.io/kube-scheduler/.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
Sorry, we do not accept changes directly against this repository. Please see
|
||||||
|
CONTRIBUTING.md for information on where and how to contribute instead.
|
7
staging/src/k8s.io/kube-scheduler/CONTRIBUTING.md
Normal file
7
staging/src/k8s.io/kube-scheduler/CONTRIBUTING.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Contributing guidelines
|
||||||
|
|
||||||
|
Do not open pull requests directly against this repository, they will be ignored. Instead, please open pull requests against [kubernetes/kubernetes](https://git.k8s.io/kubernetes/). Please follow the same [contributing guide](https://git.k8s.io/kubernetes/CONTRIBUTING.md) you would follow for any other pull request made to kubernetes/kubernetes.
|
||||||
|
|
||||||
|
This repository is published from [kubernetes/kubernetes/staging/src/k8s.io/kube-scheduler](https://git.k8s.io/kubernetes/staging/src/k8s.io/kube-scheduler) by the [kubernetes publishing-bot](https://git.k8s.io/publishing-bot).
|
||||||
|
|
||||||
|
Please see [Staging Directory and Publishing](https://git.k8s.io/community/contributors/devel/staging.md) for more information
|
202
staging/src/k8s.io/kube-scheduler/LICENSE
Normal file
202
staging/src/k8s.io/kube-scheduler/LICENSE
Normal file
@ -0,0 +1,202 @@
|
|||||||
|
|
||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright [yyyy] [name of copyright owner]
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
11
staging/src/k8s.io/kube-scheduler/OWNERS
Executable file
11
staging/src/k8s.io/kube-scheduler/OWNERS
Executable file
@ -0,0 +1,11 @@
|
|||||||
|
approvers:
|
||||||
|
- api-approvers
|
||||||
|
- sig-scheduling-maintainers
|
||||||
|
- sttts
|
||||||
|
- luxas
|
||||||
|
reviewers:
|
||||||
|
- sig-scheduling
|
||||||
|
- api-reviewers
|
||||||
|
- dixudx
|
||||||
|
- luxas
|
||||||
|
- sttts
|
16
staging/src/k8s.io/kube-scheduler/README.md
Normal file
16
staging/src/k8s.io/kube-scheduler/README.md
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# kube-scheduler
|
||||||
|
## Coming Soon!
|
||||||
|
|
||||||
|
Implements https://github.com/luxas/community/blob/master/keps/sig-cluster-lifecycle/0014-20180707-componentconfig-api-types-to-staging.md#kube-scheduler-changes
|
||||||
|
|
||||||
|
It provides
|
||||||
|
* Provide a versioned API for configuring kube-scheduler.
|
||||||
|
|
||||||
|
## Compatibility
|
||||||
|
|
||||||
|
HEAD of this repo will match HEAD of k8s.io/apiserver, k8s.io/apimachinery, and k8s.io/client-go.
|
||||||
|
|
||||||
|
## Where does it come from?
|
||||||
|
|
||||||
|
`kube-scheduler` is synced from https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/kube-scheduler.
|
||||||
|
Code changes are made in that location, merged into `k8s.io/kubernetes` and later synced here.
|
17
staging/src/k8s.io/kube-scheduler/SECURITY_CONTACTS
Normal file
17
staging/src/k8s.io/kube-scheduler/SECURITY_CONTACTS
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Defined below are the security contacts for this repo.
|
||||||
|
#
|
||||||
|
# They are the contact point for the Product Security Team to reach out
|
||||||
|
# to for triaging and handling of incoming issues.
|
||||||
|
#
|
||||||
|
# The below names agree to abide by the
|
||||||
|
# [Embargo Policy](https://github.com/kubernetes/sig-release/blob/master/security-release-process-documentation/security-release-process.md#embargo-policy)
|
||||||
|
# and will be removed and replaced if they violate that agreement.
|
||||||
|
#
|
||||||
|
# DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE
|
||||||
|
# INSTRUCTIONS AT https://kubernetes.io/security/
|
||||||
|
|
||||||
|
cjcullen
|
||||||
|
jessfraz
|
||||||
|
liggitt
|
||||||
|
philips
|
||||||
|
tallclair
|
3
staging/src/k8s.io/kube-scheduler/code-of-conduct.md
Normal file
3
staging/src/k8s.io/kube-scheduler/code-of-conduct.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Kubernetes Community Code of Conduct
|
||||||
|
|
||||||
|
Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md)
|
19
staging/src/k8s.io/kube-scheduler/config/v1alpha1/doc.go
Normal file
19
staging/src/k8s.io/kube-scheduler/config/v1alpha1/doc.go
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2018 The Kubernetes Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// +k8s:deepcopy-gen=package
|
||||||
|
|
||||||
|
package v1alpha1 // import "k8s.io/kube-scheduler/config/v1alpha1"
|
@ -0,0 +1,51 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2018 The Kubernetes Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package v1alpha1
|
||||||
|
|
||||||
|
import (
|
||||||
|
"k8s.io/apimachinery/pkg/runtime"
|
||||||
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
||||||
|
)
|
||||||
|
|
||||||
|
// GroupName is the group name use in this package
|
||||||
|
const GroupName = "kubescheduler.config.k8s.io"
|
||||||
|
|
||||||
|
// SchemeGroupVersion is group version used to register these objects
|
||||||
|
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1alpha1"}
|
||||||
|
|
||||||
|
var (
|
||||||
|
// SchemeBuilder the schema builder
|
||||||
|
SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
|
||||||
|
localSchemeBuilder = &SchemeBuilder
|
||||||
|
// AddToScheme handler to add items to the schema
|
||||||
|
AddToScheme = localSchemeBuilder.AddToScheme
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
// We only register manually written functions here. The registration of the
|
||||||
|
// generated functions takes place in the generated files. The separation
|
||||||
|
// makes the code compile even when the generated files are missing.
|
||||||
|
localSchemeBuilder.Register(addKnownTypes)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Adds the list of known types to the given scheme.
|
||||||
|
func addKnownTypes(scheme *runtime.Scheme) error {
|
||||||
|
scheme.AddKnownTypes(SchemeGroupVersion,
|
||||||
|
&KubeSchedulerConfiguration{},
|
||||||
|
)
|
||||||
|
return nil
|
||||||
|
}
|
128
staging/src/k8s.io/kube-scheduler/config/v1alpha1/types.go
Normal file
128
staging/src/k8s.io/kube-scheduler/config/v1alpha1/types.go
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2018 The Kubernetes Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package v1alpha1
|
||||||
|
|
||||||
|
import (
|
||||||
|
apimachineryconfigv1alpha1 "k8s.io/apimachinery/pkg/apis/config/v1alpha1"
|
||||||
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||||
|
apiserverconfigv1alpha1 "k8s.io/apiserver/pkg/apis/config/v1alpha1"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// SchedulerDefaultLockObjectNamespace defines default scheduler lock object namespace ("kube-system")
|
||||||
|
SchedulerDefaultLockObjectNamespace string = metav1.NamespaceSystem
|
||||||
|
|
||||||
|
// SchedulerDefaultLockObjectName defines default scheduler lock object name ("kube-scheduler")
|
||||||
|
SchedulerDefaultLockObjectName = "kube-scheduler"
|
||||||
|
|
||||||
|
// SchedulerDefaultProviderName defines the default provider names
|
||||||
|
SchedulerDefaultProviderName = "DefaultProvider"
|
||||||
|
)
|
||||||
|
|
||||||
|
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
|
||||||
|
|
||||||
|
// KubeSchedulerConfiguration configures a scheduler
|
||||||
|
type KubeSchedulerConfiguration struct {
|
||||||
|
metav1.TypeMeta `json:",inline"`
|
||||||
|
|
||||||
|
// SchedulerName is name of the scheduler, used to select which pods
|
||||||
|
// will be processed by this scheduler, based on pod's "spec.SchedulerName".
|
||||||
|
SchedulerName string `json:"schedulerName"`
|
||||||
|
// AlgorithmSource specifies the scheduler algorithm source.
|
||||||
|
AlgorithmSource SchedulerAlgorithmSource `json:"algorithmSource"`
|
||||||
|
// RequiredDuringScheduling affinity is not symmetric, but there is an implicit PreferredDuringScheduling affinity rule
|
||||||
|
// corresponding to every RequiredDuringScheduling affinity rule.
|
||||||
|
// HardPodAffinitySymmetricWeight represents the weight of implicit PreferredDuringScheduling affinity rule, in the range 0-100.
|
||||||
|
HardPodAffinitySymmetricWeight int32 `json:"hardPodAffinitySymmetricWeight"`
|
||||||
|
|
||||||
|
// LeaderElection defines the configuration of leader election client.
|
||||||
|
LeaderElection KubeSchedulerLeaderElectionConfiguration `json:"leaderElection"`
|
||||||
|
|
||||||
|
// ClientConnection specifies the kubeconfig file and client connection
|
||||||
|
// settings for the proxy server to use when communicating with the apiserver.
|
||||||
|
ClientConnection apimachineryconfigv1alpha1.ClientConnectionConfiguration `json:"clientConnection"`
|
||||||
|
// HealthzBindAddress is the IP address and port for the health check server to serve on,
|
||||||
|
// defaulting to 0.0.0.0:10251
|
||||||
|
HealthzBindAddress string `json:"healthzBindAddress"`
|
||||||
|
// MetricsBindAddress is the IP address and port for the metrics server to
|
||||||
|
// serve on, defaulting to 0.0.0.0:10251.
|
||||||
|
MetricsBindAddress string `json:"metricsBindAddress"`
|
||||||
|
|
||||||
|
// DebuggingConfiguration holds configuration for Debugging related features
|
||||||
|
// TODO: We might wanna make this a substruct like Debugging apiserverconfig.DebuggingConfiguration
|
||||||
|
apiserverconfigv1alpha1.DebuggingConfiguration `json:",inline"`
|
||||||
|
|
||||||
|
// DisablePreemption disables the pod preemption feature.
|
||||||
|
DisablePreemption bool `json:"disablePreemption"`
|
||||||
|
|
||||||
|
// PercentageOfNodeToScore is the percentage of all nodes that once found feasible
|
||||||
|
// for running a pod, the scheduler stops its search for more feasible nodes in
|
||||||
|
// the cluster. This helps improve scheduler's performance. Scheduler always tries to find
|
||||||
|
// at least "minFeasibleNodesToFind" feasible nodes no matter what the value of this flag is.
|
||||||
|
// Example: if the cluster size is 500 nodes and the value of this flag is 30,
|
||||||
|
// then scheduler stops finding further feasible nodes once it finds 150 feasible ones.
|
||||||
|
// When the value is 0, default percentage (50%) of the nodes will be scored.
|
||||||
|
PercentageOfNodesToScore int32 `json:"percentageOfNodesToScore"`
|
||||||
|
|
||||||
|
// DEPRECATED.
|
||||||
|
// Indicate the "all topologies" set for empty topologyKey when it's used for PreferredDuringScheduling pod anti-affinity.
|
||||||
|
FailureDomains string `json:"failureDomains"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SchedulerAlgorithmSource is the source of a scheduler algorithm. One source
|
||||||
|
// field must be specified, and source fields are mutually exclusive.
|
||||||
|
type SchedulerAlgorithmSource struct {
|
||||||
|
// Policy is a policy based algorithm source.
|
||||||
|
Policy *SchedulerPolicySource `json:"policy,omitempty"`
|
||||||
|
// Provider is the name of a scheduling algorithm provider to use.
|
||||||
|
Provider *string `json:"provider,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SchedulerPolicySource configures a means to obtain a scheduler Policy. One
|
||||||
|
// source field must be specified, and source fields are mutually exclusive.
|
||||||
|
type SchedulerPolicySource struct {
|
||||||
|
// File is a file policy source.
|
||||||
|
File *SchedulerPolicyFileSource `json:"file,omitempty"`
|
||||||
|
// ConfigMap is a config map policy source.
|
||||||
|
ConfigMap *SchedulerPolicyConfigMapSource `json:"configMap,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SchedulerPolicyFileSource is a policy serialized to disk and accessed via
|
||||||
|
// path.
|
||||||
|
type SchedulerPolicyFileSource struct {
|
||||||
|
// Path is the location of a serialized policy.
|
||||||
|
Path string `json:"path"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SchedulerPolicyConfigMapSource is a policy serialized into a config map value
|
||||||
|
// under the SchedulerPolicyConfigMapKey key.
|
||||||
|
type SchedulerPolicyConfigMapSource struct {
|
||||||
|
// Namespace is the namespace of the policy config map.
|
||||||
|
Namespace string `json:"namespace"`
|
||||||
|
// Name is the name of hte policy config map.
|
||||||
|
Name string `json:"name"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// KubeSchedulerLeaderElectionConfiguration expands LeaderElectionConfiguration
|
||||||
|
// to include scheduler specific configuration.
|
||||||
|
type KubeSchedulerLeaderElectionConfiguration struct {
|
||||||
|
apiserverconfigv1alpha1.LeaderElectionConfiguration `json:",inline"`
|
||||||
|
// LockObjectNamespace defines the namespace of the lock object
|
||||||
|
LockObjectNamespace string `json:"lockObjectNamespace"`
|
||||||
|
// LockObjectName defines the lock object name
|
||||||
|
LockObjectName string `json:"lockObjectName"`
|
||||||
|
}
|
1
vendor/k8s.io/kube-scheduler
generated
vendored
Symbolic link
1
vendor/k8s.io/kube-scheduler
generated
vendored
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../../staging/src/k8s.io/kube-scheduler/
|
Loading…
Reference in New Issue
Block a user