From 73670700a3888a02667cbbc9f09a28bef271b8c0 Mon Sep 17 00:00:00 2001 From: 24sama Date: Mon, 12 Dec 2022 14:47:30 +0800 Subject: [PATCH] cleanup(kk): remove greeting module Signed-off-by: 24sama --- cmd/kk/cmd/artifact/images/push.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/cmd/kk/cmd/artifact/images/push.go b/cmd/kk/cmd/artifact/images/push.go index a7dd4e3f8..2b7e28565 100644 --- a/cmd/kk/cmd/artifact/images/push.go +++ b/cmd/kk/cmd/artifact/images/push.go @@ -26,7 +26,6 @@ import ( "github.com/kubesphere/kubekey/cmd/kk/cmd/options" "github.com/kubesphere/kubekey/cmd/kk/cmd/util" "github.com/kubesphere/kubekey/cmd/kk/pkg/artifact" - "github.com/kubesphere/kubekey/cmd/kk/pkg/bootstrap/precheck" "github.com/kubesphere/kubekey/cmd/kk/pkg/common" "github.com/kubesphere/kubekey/cmd/kk/pkg/core/module" "github.com/kubesphere/kubekey/cmd/kk/pkg/core/pipeline" @@ -122,7 +121,6 @@ func newImagesPushPipeline(runtime *common.KubeRuntime) error { noArtifact := runtime.Arg.Artifact == "" m := []module.Module{ - &precheck.GreetingsModule{}, &artifact.UnArchiveModule{Skip: noArtifact}, &images.CopyImagesToRegistryModule{ImagePath: runtime.Arg.ImagesDir}, &filesystem.ChownWorkDirModule{},