2015-10-29 22:23:47 +00:00
|
|
|
/*
|
|
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
|
|
|
|
|
|
|
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 (
|
2016-01-06 01:58:04 +00:00
|
|
|
"time"
|
|
|
|
|
2016-02-03 03:42:35 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2016-01-06 01:58:04 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api/unversioned"
|
2015-10-29 22:23:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/kubelet/qos"
|
2016-02-03 03:42:35 +00:00
|
|
|
"k8s.io/kubernetes/pkg/master/ports"
|
2015-12-24 06:55:06 +00:00
|
|
|
"k8s.io/kubernetes/pkg/runtime"
|
2015-10-29 22:23:47 +00:00
|
|
|
)
|
|
|
|
|
2015-12-24 06:55:06 +00:00
|
|
|
func addDefaultingFuncs(scheme *runtime.Scheme) {
|
|
|
|
scheme.AddDefaultingFuncs(
|
2016-04-28 03:38:25 +00:00
|
|
|
SetDefaults_KubeProxyConfiguration,
|
|
|
|
SetDefaults_KubeSchedulerConfiguration,
|
|
|
|
SetDefaults_LeaderElectionConfiguration,
|
2015-10-29 22:23:47 +00:00
|
|
|
)
|
|
|
|
}
|
2016-04-28 03:38:25 +00:00
|
|
|
|
|
|
|
func SetDefaults_KubeProxyConfiguration(obj *KubeProxyConfiguration) {
|
|
|
|
if obj.BindAddress == "" {
|
|
|
|
obj.BindAddress = "0.0.0.0"
|
|
|
|
}
|
|
|
|
if obj.HealthzPort == 0 {
|
|
|
|
obj.HealthzPort = 10249
|
|
|
|
}
|
|
|
|
if obj.HealthzBindAddress == "" {
|
|
|
|
obj.HealthzBindAddress = "127.0.0.1"
|
|
|
|
}
|
|
|
|
if obj.OOMScoreAdj == nil {
|
|
|
|
temp := int32(qos.KubeProxyOOMScoreAdj)
|
|
|
|
obj.OOMScoreAdj = &temp
|
|
|
|
}
|
|
|
|
if obj.ResourceContainer == "" {
|
|
|
|
obj.ResourceContainer = "/kube-proxy"
|
|
|
|
}
|
|
|
|
if obj.IPTablesSyncPeriod.Duration == 0 {
|
|
|
|
obj.IPTablesSyncPeriod = unversioned.Duration{Duration: 30 * time.Second}
|
|
|
|
}
|
|
|
|
zero := unversioned.Duration{}
|
|
|
|
if obj.UDPIdleTimeout == zero {
|
|
|
|
obj.UDPIdleTimeout = unversioned.Duration{Duration: 250 * time.Millisecond}
|
|
|
|
}
|
|
|
|
if obj.ConntrackMax == 0 {
|
|
|
|
obj.ConntrackMax = 256 * 1024 // 4x default (64k)
|
|
|
|
}
|
|
|
|
if obj.IPTablesMasqueradeBit == nil {
|
|
|
|
temp := int32(14)
|
|
|
|
obj.IPTablesMasqueradeBit = &temp
|
|
|
|
}
|
|
|
|
if obj.ConntrackTCPEstablishedTimeout == zero {
|
|
|
|
obj.ConntrackTCPEstablishedTimeout = unversioned.Duration{Duration: 24 * time.Hour} // 1 day (1/5 default)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func SetDefaults_KubeSchedulerConfiguration(obj *KubeSchedulerConfiguration) {
|
|
|
|
if obj.Port == 0 {
|
|
|
|
obj.Port = ports.SchedulerPort
|
|
|
|
}
|
|
|
|
if obj.Address == "" {
|
|
|
|
obj.Address = "0.0.0.0"
|
|
|
|
}
|
|
|
|
if obj.AlgorithmProvider == "" {
|
|
|
|
obj.AlgorithmProvider = "DefaultProvider"
|
|
|
|
}
|
|
|
|
if obj.KubeAPIQPS == 0 {
|
|
|
|
obj.KubeAPIQPS = 50.0
|
|
|
|
}
|
|
|
|
if obj.KubeAPIBurst == 0 {
|
|
|
|
obj.KubeAPIBurst = 100
|
|
|
|
}
|
|
|
|
if obj.SchedulerName == "" {
|
|
|
|
obj.SchedulerName = api.DefaultSchedulerName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func SetDefaults_LeaderElectionConfiguration(obj *LeaderElectionConfiguration) {
|
|
|
|
zero := unversioned.Duration{}
|
|
|
|
if obj.LeaseDuration == zero {
|
|
|
|
obj.LeaseDuration = unversioned.Duration{Duration: 15 * time.Second}
|
|
|
|
}
|
|
|
|
if obj.RenewDeadline == zero {
|
|
|
|
obj.RenewDeadline = unversioned.Duration{Duration: 10 * time.Second}
|
|
|
|
}
|
|
|
|
if obj.RetryPeriod == zero {
|
|
|
|
obj.RetryPeriod = unversioned.Duration{Duration: 2 * time.Second}
|
|
|
|
}
|
|
|
|
}
|