2015-01-26 17:52:50 +00:00
|
|
|
/*
|
|
|
|
Copyright 2014 Google Inc. 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 v1beta2
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
|
2015-02-18 01:24:50 +00:00
|
|
|
"github.com/golang/glog"
|
2015-01-26 17:52:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
api.Scheme.AddDefaultingFuncs(
|
|
|
|
func(obj *Volume) {
|
|
|
|
if util.AllPtrFieldsNil(&obj.Source) {
|
2015-02-18 01:24:50 +00:00
|
|
|
glog.Errorf("Defaulting volume source for %v", obj)
|
2015-01-26 17:52:50 +00:00
|
|
|
obj.Source = VolumeSource{
|
2015-02-20 06:27:27 +00:00
|
|
|
EmptyDir: &EmptyDirVolumeSource{},
|
2015-01-26 17:52:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2015-02-19 08:32:08 +00:00
|
|
|
func(obj *ContainerPort) {
|
2015-01-26 17:52:50 +00:00
|
|
|
if obj.Protocol == "" {
|
|
|
|
obj.Protocol = ProtocolTCP
|
|
|
|
}
|
|
|
|
},
|
|
|
|
func(obj *Container) {
|
|
|
|
if obj.ImagePullPolicy == "" {
|
|
|
|
// TODO(dchen1107): Move ParseImageName code to pkg/util
|
|
|
|
parts := strings.Split(obj.Image, ":")
|
|
|
|
// Check image tag
|
|
|
|
if parts[len(parts)-1] == "latest" {
|
|
|
|
obj.ImagePullPolicy = PullAlways
|
|
|
|
} else {
|
|
|
|
obj.ImagePullPolicy = PullIfNotPresent
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if obj.TerminationMessagePath == "" {
|
|
|
|
obj.TerminationMessagePath = TerminationMessagePathDefault
|
|
|
|
}
|
|
|
|
},
|
|
|
|
func(obj *RestartPolicy) {
|
|
|
|
if util.AllPtrFieldsNil(obj) {
|
|
|
|
obj.Always = &RestartPolicyAlways{}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
func(obj *Service) {
|
|
|
|
if obj.Protocol == "" {
|
|
|
|
obj.Protocol = ProtocolTCP
|
|
|
|
}
|
|
|
|
if obj.SessionAffinity == "" {
|
|
|
|
obj.SessionAffinity = AffinityTypeNone
|
|
|
|
}
|
|
|
|
},
|
|
|
|
func(obj *PodSpec) {
|
|
|
|
if obj.DNSPolicy == "" {
|
|
|
|
obj.DNSPolicy = DNSClusterFirst
|
|
|
|
}
|
|
|
|
},
|
|
|
|
func(obj *ContainerManifest) {
|
|
|
|
if obj.DNSPolicy == "" {
|
|
|
|
obj.DNSPolicy = DNSClusterFirst
|
|
|
|
}
|
|
|
|
},
|
2015-02-16 07:44:55 +00:00
|
|
|
func(obj *LivenessProbe) {
|
|
|
|
if obj.TimeoutSeconds == 0 {
|
|
|
|
obj.TimeoutSeconds = 1
|
|
|
|
}
|
|
|
|
},
|
2015-02-18 01:24:50 +00:00
|
|
|
func(obj *Secret) {
|
|
|
|
if obj.Type == "" {
|
|
|
|
obj.Type = SecretTypeOpaque
|
|
|
|
}
|
|
|
|
},
|
2015-02-18 22:43:37 +00:00
|
|
|
func(obj *Endpoints) {
|
2015-02-21 09:05:18 +00:00
|
|
|
if obj.Protocol == "" && len(obj.Endpoints) > 0 {
|
2015-02-18 22:43:37 +00:00
|
|
|
obj.Protocol = "TCP"
|
|
|
|
}
|
|
|
|
},
|
2015-01-26 17:52:50 +00:00
|
|
|
)
|
|
|
|
}
|