2016-09-24 21:39:18 +00:00
|
|
|
// +build !ignore_autogenerated
|
|
|
|
|
|
|
|
/*
|
2017-01-01 22:23:57 +00:00
|
|
|
Copyright 2017 The Kubernetes Authors.
|
2016-09-24 21:39:18 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// This file was autogenerated by defaulter-gen. Do not edit it manually!
|
|
|
|
|
|
|
|
package v1
|
|
|
|
|
|
|
|
import (
|
2017-01-11 14:09:48 +00:00
|
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
2016-09-24 21:39:18 +00:00
|
|
|
api_v1 "k8s.io/kubernetes/pkg/api/v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RegisterDefaults adds defaulters functions to the given scheme.
|
|
|
|
// Public to allow building arbitrary schemes.
|
|
|
|
// All generated defaulters are covering - they call all nested defaulters.
|
|
|
|
func RegisterDefaults(scheme *runtime.Scheme) error {
|
|
|
|
scheme.AddTypeDefaultingFunc(&Job{}, func(obj interface{}) { SetObjectDefaults_Job(obj.(*Job)) })
|
|
|
|
scheme.AddTypeDefaultingFunc(&JobList{}, func(obj interface{}) { SetObjectDefaults_JobList(obj.(*JobList)) })
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func SetObjectDefaults_Job(in *Job) {
|
|
|
|
SetDefaults_Job(in)
|
|
|
|
api_v1.SetDefaults_PodSpec(&in.Spec.Template.Spec)
|
|
|
|
for i := range in.Spec.Template.Spec.Volumes {
|
|
|
|
a := &in.Spec.Template.Spec.Volumes[i]
|
|
|
|
api_v1.SetDefaults_Volume(a)
|
|
|
|
if a.VolumeSource.Secret != nil {
|
|
|
|
api_v1.SetDefaults_SecretVolumeSource(a.VolumeSource.Secret)
|
|
|
|
}
|
|
|
|
if a.VolumeSource.ISCSI != nil {
|
|
|
|
api_v1.SetDefaults_ISCSIVolumeSource(a.VolumeSource.ISCSI)
|
|
|
|
}
|
|
|
|
if a.VolumeSource.RBD != nil {
|
|
|
|
api_v1.SetDefaults_RBDVolumeSource(a.VolumeSource.RBD)
|
|
|
|
}
|
|
|
|
if a.VolumeSource.DownwardAPI != nil {
|
|
|
|
api_v1.SetDefaults_DownwardAPIVolumeSource(a.VolumeSource.DownwardAPI)
|
|
|
|
for j := range a.VolumeSource.DownwardAPI.Items {
|
|
|
|
b := &a.VolumeSource.DownwardAPI.Items[j]
|
|
|
|
if b.FieldRef != nil {
|
|
|
|
api_v1.SetDefaults_ObjectFieldSelector(b.FieldRef)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if a.VolumeSource.ConfigMap != nil {
|
|
|
|
api_v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
|
|
}
|
|
|
|
if a.VolumeSource.AzureDisk != nil {
|
|
|
|
api_v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
|
|
}
|
2017-02-20 18:09:41 +00:00
|
|
|
if a.VolumeSource.Projected != nil {
|
|
|
|
api_v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
|
|
for j := range a.VolumeSource.Projected.Sources {
|
|
|
|
b := &a.VolumeSource.Projected.Sources[j]
|
|
|
|
if b.DownwardAPI != nil {
|
|
|
|
for k := range b.DownwardAPI.Items {
|
|
|
|
c := &b.DownwardAPI.Items[k]
|
|
|
|
if c.FieldRef != nil {
|
|
|
|
api_v1.SetDefaults_ObjectFieldSelector(c.FieldRef)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-19 20:46:23 +00:00
|
|
|
if a.VolumeSource.ScaleIO != nil {
|
|
|
|
api_v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
|
|
}
|
2016-09-24 21:39:18 +00:00
|
|
|
}
|
|
|
|
for i := range in.Spec.Template.Spec.InitContainers {
|
|
|
|
a := &in.Spec.Template.Spec.InitContainers[i]
|
|
|
|
api_v1.SetDefaults_Container(a)
|
|
|
|
for j := range a.Ports {
|
|
|
|
b := &a.Ports[j]
|
|
|
|
api_v1.SetDefaults_ContainerPort(b)
|
|
|
|
}
|
|
|
|
for j := range a.Env {
|
|
|
|
b := &a.Env[j]
|
|
|
|
if b.ValueFrom != nil {
|
|
|
|
if b.ValueFrom.FieldRef != nil {
|
|
|
|
api_v1.SetDefaults_ObjectFieldSelector(b.ValueFrom.FieldRef)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-26 16:21:13 +00:00
|
|
|
api_v1.SetDefaults_ResourceList(&a.Resources.Limits)
|
|
|
|
api_v1.SetDefaults_ResourceList(&a.Resources.Requests)
|
2016-09-24 21:39:18 +00:00
|
|
|
if a.LivenessProbe != nil {
|
|
|
|
api_v1.SetDefaults_Probe(a.LivenessProbe)
|
|
|
|
if a.LivenessProbe.Handler.HTTPGet != nil {
|
|
|
|
api_v1.SetDefaults_HTTPGetAction(a.LivenessProbe.Handler.HTTPGet)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if a.ReadinessProbe != nil {
|
|
|
|
api_v1.SetDefaults_Probe(a.ReadinessProbe)
|
|
|
|
if a.ReadinessProbe.Handler.HTTPGet != nil {
|
|
|
|
api_v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if a.Lifecycle != nil {
|
|
|
|
if a.Lifecycle.PostStart != nil {
|
|
|
|
if a.Lifecycle.PostStart.HTTPGet != nil {
|
|
|
|
api_v1.SetDefaults_HTTPGetAction(a.Lifecycle.PostStart.HTTPGet)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if a.Lifecycle.PreStop != nil {
|
|
|
|
if a.Lifecycle.PreStop.HTTPGet != nil {
|
|
|
|
api_v1.SetDefaults_HTTPGetAction(a.Lifecycle.PreStop.HTTPGet)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i := range in.Spec.Template.Spec.Containers {
|
|
|
|
a := &in.Spec.Template.Spec.Containers[i]
|
|
|
|
api_v1.SetDefaults_Container(a)
|
|
|
|
for j := range a.Ports {
|
|
|
|
b := &a.Ports[j]
|
|
|
|
api_v1.SetDefaults_ContainerPort(b)
|
|
|
|
}
|
|
|
|
for j := range a.Env {
|
|
|
|
b := &a.Env[j]
|
|
|
|
if b.ValueFrom != nil {
|
|
|
|
if b.ValueFrom.FieldRef != nil {
|
|
|
|
api_v1.SetDefaults_ObjectFieldSelector(b.ValueFrom.FieldRef)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-26 16:21:13 +00:00
|
|
|
api_v1.SetDefaults_ResourceList(&a.Resources.Limits)
|
|
|
|
api_v1.SetDefaults_ResourceList(&a.Resources.Requests)
|
2016-09-24 21:39:18 +00:00
|
|
|
if a.LivenessProbe != nil {
|
|
|
|
api_v1.SetDefaults_Probe(a.LivenessProbe)
|
|
|
|
if a.LivenessProbe.Handler.HTTPGet != nil {
|
|
|
|
api_v1.SetDefaults_HTTPGetAction(a.LivenessProbe.Handler.HTTPGet)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if a.ReadinessProbe != nil {
|
|
|
|
api_v1.SetDefaults_Probe(a.ReadinessProbe)
|
|
|
|
if a.ReadinessProbe.Handler.HTTPGet != nil {
|
|
|
|
api_v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if a.Lifecycle != nil {
|
|
|
|
if a.Lifecycle.PostStart != nil {
|
|
|
|
if a.Lifecycle.PostStart.HTTPGet != nil {
|
|
|
|
api_v1.SetDefaults_HTTPGetAction(a.Lifecycle.PostStart.HTTPGet)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if a.Lifecycle.PreStop != nil {
|
|
|
|
if a.Lifecycle.PreStop.HTTPGet != nil {
|
|
|
|
api_v1.SetDefaults_HTTPGetAction(a.Lifecycle.PreStop.HTTPGet)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func SetObjectDefaults_JobList(in *JobList) {
|
|
|
|
for i := range in.Items {
|
|
|
|
a := &in.Items[i]
|
|
|
|
SetObjectDefaults_Job(a)
|
|
|
|
}
|
|
|
|
}
|