Skip to content

Commit

Permalink
fix: formatting so tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
ekristen committed Sep 24, 2021
1 parent 44ca2ae commit 97c69b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/commands/cluster-add.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func (w *clusterAddCommand) Execute(c *cli.Context) error {
if _, err := kube.CoreV1().Services(c.String("namespace")).Create(ctx, newService, metav1.CreateOptions{}); err != nil {
return err
}
log.Info("Cluster (%s) added successfully")
log.Info("Cluster added successfully")
} else {
if c.Bool("overwrite") {
if _, err := kube.CoreV1().Services(c.String("namespace")).Update(ctx, newService, metav1.UpdateOptions{}); err != nil {
Expand Down

0 comments on commit 97c69b1

Please sign in to comment.