mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-03 23:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			71 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2016 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 v1
 | 
						|
 | 
						|
import (
 | 
						|
	batchv1 "k8s.io/api/batch/v1"
 | 
						|
	"k8s.io/apimachinery/pkg/runtime"
 | 
						|
	utilfeature "k8s.io/apiserver/pkg/util/feature"
 | 
						|
	"k8s.io/kubernetes/pkg/features"
 | 
						|
	utilpointer "k8s.io/utils/pointer"
 | 
						|
)
 | 
						|
 | 
						|
func addDefaultingFuncs(scheme *runtime.Scheme) error {
 | 
						|
	return RegisterDefaults(scheme)
 | 
						|
}
 | 
						|
 | 
						|
func SetDefaults_Job(obj *batchv1.Job) {
 | 
						|
	// For a non-parallel job, you can leave both `.spec.completions` and
 | 
						|
	// `.spec.parallelism` unset.  When both are unset, both are defaulted to 1.
 | 
						|
	if obj.Spec.Completions == nil && obj.Spec.Parallelism == nil {
 | 
						|
		obj.Spec.Completions = utilpointer.Int32Ptr(1)
 | 
						|
		obj.Spec.Parallelism = utilpointer.Int32Ptr(1)
 | 
						|
	}
 | 
						|
	if obj.Spec.Parallelism == nil {
 | 
						|
		obj.Spec.Parallelism = utilpointer.Int32Ptr(1)
 | 
						|
	}
 | 
						|
	if obj.Spec.BackoffLimit == nil {
 | 
						|
		obj.Spec.BackoffLimit = utilpointer.Int32Ptr(6)
 | 
						|
	}
 | 
						|
	labels := obj.Spec.Template.Labels
 | 
						|
	if labels != nil && len(obj.Labels) == 0 {
 | 
						|
		obj.Labels = labels
 | 
						|
	}
 | 
						|
	if utilfeature.DefaultFeatureGate.Enabled(features.IndexedJob) && obj.Spec.CompletionMode == nil {
 | 
						|
		mode := batchv1.NonIndexedCompletion
 | 
						|
		obj.Spec.CompletionMode = &mode
 | 
						|
	}
 | 
						|
	if utilfeature.DefaultFeatureGate.Enabled(features.SuspendJob) && obj.Spec.Suspend == nil {
 | 
						|
		obj.Spec.Suspend = utilpointer.BoolPtr(false)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func SetDefaults_CronJob(obj *batchv1.CronJob) {
 | 
						|
	if obj.Spec.ConcurrencyPolicy == "" {
 | 
						|
		obj.Spec.ConcurrencyPolicy = batchv1.AllowConcurrent
 | 
						|
	}
 | 
						|
	if obj.Spec.Suspend == nil {
 | 
						|
		obj.Spec.Suspend = utilpointer.BoolPtr(false)
 | 
						|
	}
 | 
						|
	if obj.Spec.SuccessfulJobsHistoryLimit == nil {
 | 
						|
		obj.Spec.SuccessfulJobsHistoryLimit = utilpointer.Int32Ptr(3)
 | 
						|
	}
 | 
						|
	if obj.Spec.FailedJobsHistoryLimit == nil {
 | 
						|
		obj.Spec.FailedJobsHistoryLimit = utilpointer.Int32Ptr(1)
 | 
						|
	}
 | 
						|
}
 |