From 33cfd09a5e95c39e00d826dc168a34b351e7b0fd Mon Sep 17 00:00:00 2001 From: vankichi Date: Thu, 15 Feb 2024 15:22:37 +0900 Subject: [PATCH] :recycle: Fix format Signed-off-by: vankichi --- internal/k8s/vald/benchmark/job/job_template_option.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/internal/k8s/vald/benchmark/job/job_template_option.go b/internal/k8s/vald/benchmark/job/job_template_option.go index 3f3b5e89815..35df5e426a7 100644 --- a/internal/k8s/vald/benchmark/job/job_template_option.go +++ b/internal/k8s/vald/benchmark/job/job_template_option.go @@ -64,10 +64,12 @@ func WithImagePullPolicy(p ImagePullPolicy) BenchmarkJobTplOption { // BenchmarkJobOption represents the option for create benchmark job template. type BenchmarkJobOption func(b *jobs.Job) error -// defaultTTLSeconds represents the default TTLSecondsAfterFinished for benchmark job template. const ( - defaultTTLSeconds int32 = 600 + // defaultTTLSeconds represents the default TTLSecondsAfterFinished for benchmark job template. + defaultTTLSeconds int32 = 600 + // defaultCompletions represents the default completions for benchmark job template. defaultCompletions int32 = 1 + // defaultParallelism represents the default parallelism for benchmark job template. defaultParallelism int32 = 1 )