diff --git a/cmd/vclusterctl/cmd/platform/add/cluster.go b/cmd/vclusterctl/cmd/platform/add/cluster.go index 3a550cf80..30848887d 100644 --- a/cmd/vclusterctl/cmd/platform/add/cluster.go +++ b/cmd/vclusterctl/cmd/platform/add/cluster.go @@ -104,7 +104,7 @@ func (cmd *ClusterCmd) Run(ctx context.Context, args []string) error { loftVersion, err := platformClient.Version() if err != nil { - return fmt.Errorf("get loft version: %w", err) + return fmt.Errorf("get platform version: %w", err) } // TODO(ThomasK33): Eventually change this into an Apply instead of a Create call @@ -268,7 +268,7 @@ func (cmd *ClusterCmd) Run(ctx context.Context, args []string) error { } } - cmd.Log.Donef("Successfully added cluster %s to Loft", clusterName) + cmd.Log.Donef("Successfully added cluster %s to the platform", clusterName) return nil }