diff --git a/pkg/clustermanager/eksa_installer.go b/pkg/clustermanager/eksa_installer.go index 86ca0e8b7880c..9c2636008163b 100644 --- a/pkg/clustermanager/eksa_installer.go +++ b/pkg/clustermanager/eksa_installer.go @@ -59,7 +59,6 @@ func WithEKSAInstallerNoTimeouts() EKSAInstallerOpt { // Install configures and applies eks-a components in a cluster accordingly to a spec. func (i *EKSAInstaller) Install(ctx context.Context, log logr.Logger, cluster *types.Cluster, spec *cluster.Spec) error { - err := i.createEKSAComponents(ctx, log, cluster, spec) if err != nil { return fmt.Errorf("applying EKSA components: %v", err) @@ -129,6 +128,7 @@ func (i *EKSAInstaller) createEKSAComponents(ctx context.Context, log logr.Logge return nil } + // applyBundles applies the bundles to the cluster. func (i *EKSAInstaller) applyBundles(ctx context.Context, log logr.Logger, cluster *types.Cluster, spec *cluster.Spec) error { bundleObj, err := yaml.Marshal(spec.Bundles) diff --git a/pkg/workflows/management/create_install_eksa.go b/pkg/workflows/management/create_install_eksa.go index 01a578e3530ed..199473161d614 100644 --- a/pkg/workflows/management/create_install_eksa.go +++ b/pkg/workflows/management/create_install_eksa.go @@ -35,7 +35,6 @@ func (s *installEksaComponentsOnBootstrapTask) Checkpoint() *task.CompletedTask } func installEKSAComponents(ctx context.Context, commandContext *task.CommandContext, targetCluster *types.Cluster) error { - logger.Info("Installing EKS-D components") err := commandContext.EksdInstaller.InstallEksdCRDs(ctx, commandContext.ClusterSpec, targetCluster) if err != nil {