Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cmd/pro/cluster/add.go
Original file line number Diff line number Diff line change
Expand Up @@ -371,8 +371,8 @@ func installAgent(
helmCmd.Stderr = log.Writer(log.LevelDebug)
helmCmd.Stdin = os.Stdin

log.Info("Installing agent")
log.Debugf("Running helm command: %v", helmCmd.Args)
log.Info("installing agent")
log.Debugf("running helm command: %v", helmCmd.Args)

if err := helmCmd.Run(); err != nil {
errChan <- fmt.Errorf("failed to install chart: %w", err)
Expand All @@ -394,7 +394,7 @@ func waitForClusterInitialized(
managementClient kube.Interface,
clusterName string,
) error {
log.Info("Waiting for the cluster to be initialized")
log.Info("waiting for the cluster to be initialized")
waitErr := wait.PollUntilContextTimeout(
ctx,
time.Second,
Expand Down
Loading