From 8ba0e505d6711bdd97d904c90b04c64f7e255606 Mon Sep 17 00:00:00 2001 From: RealAnna Date: Mon, 13 Mar 2023 11:11:12 +0100 Subject: [PATCH] fix according to review Signed-off-by: RealAnna --- pkg/processor/deployment/deployment.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/processor/deployment/deployment.go b/pkg/processor/deployment/deployment.go index c16edc4..964ab3b 100644 --- a/pkg/processor/deployment/deployment.go +++ b/pkg/processor/deployment/deployment.go @@ -7,6 +7,7 @@ import ( "text/template" "github.com/arttor/helmify/pkg/cluster" + "github.com/arttor/helmify/pkg/helmify" "github.com/arttor/helmify/pkg/processor" "github.com/arttor/helmify/pkg/processor/constraints" "github.com/arttor/helmify/pkg/processor/imagePullSecrets" @@ -50,7 +51,6 @@ const selectorTempl = `%[1]s const imagePullPolicyTemplate = "{{ .Values.%[1]s.%[2]s.imagePullPolicy }}" const envValue = "{{ .Values.%[1]s.%[2]s.%[3]s.%[4]s }}" - // New creates processor for k8s Deployment resource. func New() helmify.Processor { return &deployment{}