Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
remove this debug commit
Browse files Browse the repository at this point in the history
  • Loading branch information
surajssd committed Aug 5, 2020
1 parent 2aeac56 commit a096768
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/components/util/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,10 @@ func HelmActionConfig(ns string, kubeconfig []byte) (*action.Configuration, erro
}

// TODO: Add some logging implementation? We currently just pass an empty function for logging.
logF := func(format string, v ...interface{}) {}
logF := func(format string, v ...interface{}) {
fmt.Printf(format, v...)
fmt.Println()
}

if err := actionConfig.Init(getter, ns, "secret", logF); err != nil {
return nil, fmt.Errorf("failed initializing helm: %w", err)
Expand Down

0 comments on commit a096768

Please sign in to comment.