mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-29 21:01:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			481 lines
		
	
	
		
			16 KiB
		
	
	
	
		
			Go
		
	
	
	
	
		
			Generated
		
	
	
			
		
		
	
	
			481 lines
		
	
	
		
			16 KiB
		
	
	
	
		
			Go
		
	
	
	
	
		
			Generated
		
	
	
| // +build !ignore_autogenerated
 | |
| 
 | |
| /*
 | |
| Copyright 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.
 | |
| */
 | |
| 
 | |
| // Code generated by defaulter-gen. DO NOT EDIT.
 | |
| 
 | |
| package v1
 | |
| 
 | |
| import (
 | |
| 	v1 "k8s.io/api/batch/v1"
 | |
| 	runtime "k8s.io/apimachinery/pkg/runtime"
 | |
| 	corev1 "k8s.io/kubernetes/pkg/apis/core/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(&v1.CronJob{}, func(obj interface{}) { SetObjectDefaults_CronJob(obj.(*v1.CronJob)) })
 | |
| 	scheme.AddTypeDefaultingFunc(&v1.CronJobList{}, func(obj interface{}) { SetObjectDefaults_CronJobList(obj.(*v1.CronJobList)) })
 | |
| 	scheme.AddTypeDefaultingFunc(&v1.Job{}, func(obj interface{}) { SetObjectDefaults_Job(obj.(*v1.Job)) })
 | |
| 	scheme.AddTypeDefaultingFunc(&v1.JobList{}, func(obj interface{}) { SetObjectDefaults_JobList(obj.(*v1.JobList)) })
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func SetObjectDefaults_CronJob(in *v1.CronJob) {
 | |
| 	SetDefaults_CronJob(in)
 | |
| 	corev1.SetDefaults_PodSpec(&in.Spec.JobTemplate.Spec.Template.Spec)
 | |
| 	for i := range in.Spec.JobTemplate.Spec.Template.Spec.Volumes {
 | |
| 		a := &in.Spec.JobTemplate.Spec.Template.Spec.Volumes[i]
 | |
| 		corev1.SetDefaults_Volume(a)
 | |
| 		if a.VolumeSource.HostPath != nil {
 | |
| 			corev1.SetDefaults_HostPathVolumeSource(a.VolumeSource.HostPath)
 | |
| 		}
 | |
| 		if a.VolumeSource.Secret != nil {
 | |
| 			corev1.SetDefaults_SecretVolumeSource(a.VolumeSource.Secret)
 | |
| 		}
 | |
| 		if a.VolumeSource.ISCSI != nil {
 | |
| 			corev1.SetDefaults_ISCSIVolumeSource(a.VolumeSource.ISCSI)
 | |
| 		}
 | |
| 		if a.VolumeSource.RBD != nil {
 | |
| 			corev1.SetDefaults_RBDVolumeSource(a.VolumeSource.RBD)
 | |
| 		}
 | |
| 		if a.VolumeSource.DownwardAPI != nil {
 | |
| 			corev1.SetDefaults_DownwardAPIVolumeSource(a.VolumeSource.DownwardAPI)
 | |
| 			for j := range a.VolumeSource.DownwardAPI.Items {
 | |
| 				b := &a.VolumeSource.DownwardAPI.Items[j]
 | |
| 				if b.FieldRef != nil {
 | |
| 					corev1.SetDefaults_ObjectFieldSelector(b.FieldRef)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 		if a.VolumeSource.ConfigMap != nil {
 | |
| 			corev1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
 | |
| 		}
 | |
| 		if a.VolumeSource.AzureDisk != nil {
 | |
| 			corev1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
 | |
| 		}
 | |
| 		if a.VolumeSource.Projected != nil {
 | |
| 			corev1.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 {
 | |
| 							corev1.SetDefaults_ObjectFieldSelector(c.FieldRef)
 | |
| 						}
 | |
| 					}
 | |
| 				}
 | |
| 				if b.ServiceAccountToken != nil {
 | |
| 					corev1.SetDefaults_ServiceAccountTokenProjection(b.ServiceAccountToken)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 		if a.VolumeSource.ScaleIO != nil {
 | |
| 			corev1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
 | |
| 		}
 | |
| 		if a.VolumeSource.Ephemeral != nil {
 | |
| 			if a.VolumeSource.Ephemeral.VolumeClaimTemplate != nil {
 | |
| 				corev1.SetDefaults_PersistentVolumeClaimSpec(&a.VolumeSource.Ephemeral.VolumeClaimTemplate.Spec)
 | |
| 				corev1.SetDefaults_ResourceList(&a.VolumeSource.Ephemeral.VolumeClaimTemplate.Spec.Resources.Limits)
 | |
| 				corev1.SetDefaults_ResourceList(&a.VolumeSource.Ephemeral.VolumeClaimTemplate.Spec.Resources.Requests)
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 	for i := range in.Spec.JobTemplate.Spec.Template.Spec.InitContainers {
 | |
| 		a := &in.Spec.JobTemplate.Spec.Template.Spec.InitContainers[i]
 | |
| 		corev1.SetDefaults_Container(a)
 | |
| 		for j := range a.Ports {
 | |
| 			b := &a.Ports[j]
 | |
| 			if b.Protocol == "" {
 | |
| 				b.Protocol = "TCP"
 | |
| 			}
 | |
| 		}
 | |
| 		for j := range a.Env {
 | |
| 			b := &a.Env[j]
 | |
| 			if b.ValueFrom != nil {
 | |
| 				if b.ValueFrom.FieldRef != nil {
 | |
| 					corev1.SetDefaults_ObjectFieldSelector(b.ValueFrom.FieldRef)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 		corev1.SetDefaults_ResourceList(&a.Resources.Limits)
 | |
| 		corev1.SetDefaults_ResourceList(&a.Resources.Requests)
 | |
| 		if a.LivenessProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.LivenessProbe)
 | |
| 			if a.LivenessProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.ReadinessProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.ReadinessProbe)
 | |
| 			if a.ReadinessProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.StartupProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.StartupProbe)
 | |
| 			if a.StartupProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.Lifecycle != nil {
 | |
| 			if a.Lifecycle.PostStart != nil {
 | |
| 				if a.Lifecycle.PostStart.HTTPGet != nil {
 | |
| 					corev1.SetDefaults_HTTPGetAction(a.Lifecycle.PostStart.HTTPGet)
 | |
| 				}
 | |
| 			}
 | |
| 			if a.Lifecycle.PreStop != nil {
 | |
| 				if a.Lifecycle.PreStop.HTTPGet != nil {
 | |
| 					corev1.SetDefaults_HTTPGetAction(a.Lifecycle.PreStop.HTTPGet)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 	for i := range in.Spec.JobTemplate.Spec.Template.Spec.Containers {
 | |
| 		a := &in.Spec.JobTemplate.Spec.Template.Spec.Containers[i]
 | |
| 		corev1.SetDefaults_Container(a)
 | |
| 		for j := range a.Ports {
 | |
| 			b := &a.Ports[j]
 | |
| 			if b.Protocol == "" {
 | |
| 				b.Protocol = "TCP"
 | |
| 			}
 | |
| 		}
 | |
| 		for j := range a.Env {
 | |
| 			b := &a.Env[j]
 | |
| 			if b.ValueFrom != nil {
 | |
| 				if b.ValueFrom.FieldRef != nil {
 | |
| 					corev1.SetDefaults_ObjectFieldSelector(b.ValueFrom.FieldRef)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 		corev1.SetDefaults_ResourceList(&a.Resources.Limits)
 | |
| 		corev1.SetDefaults_ResourceList(&a.Resources.Requests)
 | |
| 		if a.LivenessProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.LivenessProbe)
 | |
| 			if a.LivenessProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.ReadinessProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.ReadinessProbe)
 | |
| 			if a.ReadinessProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.StartupProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.StartupProbe)
 | |
| 			if a.StartupProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.Lifecycle != nil {
 | |
| 			if a.Lifecycle.PostStart != nil {
 | |
| 				if a.Lifecycle.PostStart.HTTPGet != nil {
 | |
| 					corev1.SetDefaults_HTTPGetAction(a.Lifecycle.PostStart.HTTPGet)
 | |
| 				}
 | |
| 			}
 | |
| 			if a.Lifecycle.PreStop != nil {
 | |
| 				if a.Lifecycle.PreStop.HTTPGet != nil {
 | |
| 					corev1.SetDefaults_HTTPGetAction(a.Lifecycle.PreStop.HTTPGet)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 	for i := range in.Spec.JobTemplate.Spec.Template.Spec.EphemeralContainers {
 | |
| 		a := &in.Spec.JobTemplate.Spec.Template.Spec.EphemeralContainers[i]
 | |
| 		corev1.SetDefaults_EphemeralContainer(a)
 | |
| 		for j := range a.EphemeralContainerCommon.Ports {
 | |
| 			b := &a.EphemeralContainerCommon.Ports[j]
 | |
| 			if b.Protocol == "" {
 | |
| 				b.Protocol = "TCP"
 | |
| 			}
 | |
| 		}
 | |
| 		for j := range a.EphemeralContainerCommon.Env {
 | |
| 			b := &a.EphemeralContainerCommon.Env[j]
 | |
| 			if b.ValueFrom != nil {
 | |
| 				if b.ValueFrom.FieldRef != nil {
 | |
| 					corev1.SetDefaults_ObjectFieldSelector(b.ValueFrom.FieldRef)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 		corev1.SetDefaults_ResourceList(&a.EphemeralContainerCommon.Resources.Limits)
 | |
| 		corev1.SetDefaults_ResourceList(&a.EphemeralContainerCommon.Resources.Requests)
 | |
| 		if a.EphemeralContainerCommon.LivenessProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.EphemeralContainerCommon.LivenessProbe)
 | |
| 			if a.EphemeralContainerCommon.LivenessProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.EphemeralContainerCommon.ReadinessProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
 | |
| 			if a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.EphemeralContainerCommon.StartupProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
 | |
| 			if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.EphemeralContainerCommon.Lifecycle != nil {
 | |
| 			if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
 | |
| 				if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil {
 | |
| 					corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet)
 | |
| 				}
 | |
| 			}
 | |
| 			if a.EphemeralContainerCommon.Lifecycle.PreStop != nil {
 | |
| 				if a.EphemeralContainerCommon.Lifecycle.PreStop.HTTPGet != nil {
 | |
| 					corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.Lifecycle.PreStop.HTTPGet)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 	corev1.SetDefaults_ResourceList(&in.Spec.JobTemplate.Spec.Template.Spec.Overhead)
 | |
| }
 | |
| 
 | |
| func SetObjectDefaults_CronJobList(in *v1.CronJobList) {
 | |
| 	for i := range in.Items {
 | |
| 		a := &in.Items[i]
 | |
| 		SetObjectDefaults_CronJob(a)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func SetObjectDefaults_Job(in *v1.Job) {
 | |
| 	SetDefaults_Job(in)
 | |
| 	corev1.SetDefaults_PodSpec(&in.Spec.Template.Spec)
 | |
| 	for i := range in.Spec.Template.Spec.Volumes {
 | |
| 		a := &in.Spec.Template.Spec.Volumes[i]
 | |
| 		corev1.SetDefaults_Volume(a)
 | |
| 		if a.VolumeSource.HostPath != nil {
 | |
| 			corev1.SetDefaults_HostPathVolumeSource(a.VolumeSource.HostPath)
 | |
| 		}
 | |
| 		if a.VolumeSource.Secret != nil {
 | |
| 			corev1.SetDefaults_SecretVolumeSource(a.VolumeSource.Secret)
 | |
| 		}
 | |
| 		if a.VolumeSource.ISCSI != nil {
 | |
| 			corev1.SetDefaults_ISCSIVolumeSource(a.VolumeSource.ISCSI)
 | |
| 		}
 | |
| 		if a.VolumeSource.RBD != nil {
 | |
| 			corev1.SetDefaults_RBDVolumeSource(a.VolumeSource.RBD)
 | |
| 		}
 | |
| 		if a.VolumeSource.DownwardAPI != nil {
 | |
| 			corev1.SetDefaults_DownwardAPIVolumeSource(a.VolumeSource.DownwardAPI)
 | |
| 			for j := range a.VolumeSource.DownwardAPI.Items {
 | |
| 				b := &a.VolumeSource.DownwardAPI.Items[j]
 | |
| 				if b.FieldRef != nil {
 | |
| 					corev1.SetDefaults_ObjectFieldSelector(b.FieldRef)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 		if a.VolumeSource.ConfigMap != nil {
 | |
| 			corev1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
 | |
| 		}
 | |
| 		if a.VolumeSource.AzureDisk != nil {
 | |
| 			corev1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
 | |
| 		}
 | |
| 		if a.VolumeSource.Projected != nil {
 | |
| 			corev1.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 {
 | |
| 							corev1.SetDefaults_ObjectFieldSelector(c.FieldRef)
 | |
| 						}
 | |
| 					}
 | |
| 				}
 | |
| 				if b.ServiceAccountToken != nil {
 | |
| 					corev1.SetDefaults_ServiceAccountTokenProjection(b.ServiceAccountToken)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 		if a.VolumeSource.ScaleIO != nil {
 | |
| 			corev1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
 | |
| 		}
 | |
| 		if a.VolumeSource.Ephemeral != nil {
 | |
| 			if a.VolumeSource.Ephemeral.VolumeClaimTemplate != nil {
 | |
| 				corev1.SetDefaults_PersistentVolumeClaimSpec(&a.VolumeSource.Ephemeral.VolumeClaimTemplate.Spec)
 | |
| 				corev1.SetDefaults_ResourceList(&a.VolumeSource.Ephemeral.VolumeClaimTemplate.Spec.Resources.Limits)
 | |
| 				corev1.SetDefaults_ResourceList(&a.VolumeSource.Ephemeral.VolumeClaimTemplate.Spec.Resources.Requests)
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 	for i := range in.Spec.Template.Spec.InitContainers {
 | |
| 		a := &in.Spec.Template.Spec.InitContainers[i]
 | |
| 		corev1.SetDefaults_Container(a)
 | |
| 		for j := range a.Ports {
 | |
| 			b := &a.Ports[j]
 | |
| 			if b.Protocol == "" {
 | |
| 				b.Protocol = "TCP"
 | |
| 			}
 | |
| 		}
 | |
| 		for j := range a.Env {
 | |
| 			b := &a.Env[j]
 | |
| 			if b.ValueFrom != nil {
 | |
| 				if b.ValueFrom.FieldRef != nil {
 | |
| 					corev1.SetDefaults_ObjectFieldSelector(b.ValueFrom.FieldRef)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 		corev1.SetDefaults_ResourceList(&a.Resources.Limits)
 | |
| 		corev1.SetDefaults_ResourceList(&a.Resources.Requests)
 | |
| 		if a.LivenessProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.LivenessProbe)
 | |
| 			if a.LivenessProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.ReadinessProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.ReadinessProbe)
 | |
| 			if a.ReadinessProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.StartupProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.StartupProbe)
 | |
| 			if a.StartupProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.Lifecycle != nil {
 | |
| 			if a.Lifecycle.PostStart != nil {
 | |
| 				if a.Lifecycle.PostStart.HTTPGet != nil {
 | |
| 					corev1.SetDefaults_HTTPGetAction(a.Lifecycle.PostStart.HTTPGet)
 | |
| 				}
 | |
| 			}
 | |
| 			if a.Lifecycle.PreStop != nil {
 | |
| 				if a.Lifecycle.PreStop.HTTPGet != nil {
 | |
| 					corev1.SetDefaults_HTTPGetAction(a.Lifecycle.PreStop.HTTPGet)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 	for i := range in.Spec.Template.Spec.Containers {
 | |
| 		a := &in.Spec.Template.Spec.Containers[i]
 | |
| 		corev1.SetDefaults_Container(a)
 | |
| 		for j := range a.Ports {
 | |
| 			b := &a.Ports[j]
 | |
| 			if b.Protocol == "" {
 | |
| 				b.Protocol = "TCP"
 | |
| 			}
 | |
| 		}
 | |
| 		for j := range a.Env {
 | |
| 			b := &a.Env[j]
 | |
| 			if b.ValueFrom != nil {
 | |
| 				if b.ValueFrom.FieldRef != nil {
 | |
| 					corev1.SetDefaults_ObjectFieldSelector(b.ValueFrom.FieldRef)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 		corev1.SetDefaults_ResourceList(&a.Resources.Limits)
 | |
| 		corev1.SetDefaults_ResourceList(&a.Resources.Requests)
 | |
| 		if a.LivenessProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.LivenessProbe)
 | |
| 			if a.LivenessProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.ReadinessProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.ReadinessProbe)
 | |
| 			if a.ReadinessProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.StartupProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.StartupProbe)
 | |
| 			if a.StartupProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.Lifecycle != nil {
 | |
| 			if a.Lifecycle.PostStart != nil {
 | |
| 				if a.Lifecycle.PostStart.HTTPGet != nil {
 | |
| 					corev1.SetDefaults_HTTPGetAction(a.Lifecycle.PostStart.HTTPGet)
 | |
| 				}
 | |
| 			}
 | |
| 			if a.Lifecycle.PreStop != nil {
 | |
| 				if a.Lifecycle.PreStop.HTTPGet != nil {
 | |
| 					corev1.SetDefaults_HTTPGetAction(a.Lifecycle.PreStop.HTTPGet)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 	for i := range in.Spec.Template.Spec.EphemeralContainers {
 | |
| 		a := &in.Spec.Template.Spec.EphemeralContainers[i]
 | |
| 		corev1.SetDefaults_EphemeralContainer(a)
 | |
| 		for j := range a.EphemeralContainerCommon.Ports {
 | |
| 			b := &a.EphemeralContainerCommon.Ports[j]
 | |
| 			if b.Protocol == "" {
 | |
| 				b.Protocol = "TCP"
 | |
| 			}
 | |
| 		}
 | |
| 		for j := range a.EphemeralContainerCommon.Env {
 | |
| 			b := &a.EphemeralContainerCommon.Env[j]
 | |
| 			if b.ValueFrom != nil {
 | |
| 				if b.ValueFrom.FieldRef != nil {
 | |
| 					corev1.SetDefaults_ObjectFieldSelector(b.ValueFrom.FieldRef)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 		corev1.SetDefaults_ResourceList(&a.EphemeralContainerCommon.Resources.Limits)
 | |
| 		corev1.SetDefaults_ResourceList(&a.EphemeralContainerCommon.Resources.Requests)
 | |
| 		if a.EphemeralContainerCommon.LivenessProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.EphemeralContainerCommon.LivenessProbe)
 | |
| 			if a.EphemeralContainerCommon.LivenessProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.EphemeralContainerCommon.ReadinessProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
 | |
| 			if a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.EphemeralContainerCommon.StartupProbe != nil {
 | |
| 			corev1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
 | |
| 			if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil {
 | |
| 				corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet)
 | |
| 			}
 | |
| 		}
 | |
| 		if a.EphemeralContainerCommon.Lifecycle != nil {
 | |
| 			if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
 | |
| 				if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil {
 | |
| 					corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet)
 | |
| 				}
 | |
| 			}
 | |
| 			if a.EphemeralContainerCommon.Lifecycle.PreStop != nil {
 | |
| 				if a.EphemeralContainerCommon.Lifecycle.PreStop.HTTPGet != nil {
 | |
| 					corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.Lifecycle.PreStop.HTTPGet)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 	corev1.SetDefaults_ResourceList(&in.Spec.Template.Spec.Overhead)
 | |
| }
 | |
| 
 | |
| func SetObjectDefaults_JobList(in *v1.JobList) {
 | |
| 	for i := range in.Items {
 | |
| 		a := &in.Items[i]
 | |
| 		SetObjectDefaults_Job(a)
 | |
| 	}
 | |
| }
 |