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

Commit

Permalink
Rename local plugin to standalone. (#2358)
Browse files Browse the repository at this point in the history
This also revamps the description in the binary.

Signed-off-by: joshrosso <[email protected]>
  • Loading branch information
joshrosso authored Oct 26, 2021
1 parent 9966bc3 commit 370ca1c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions cli/cmd/plugin/standalone-cluster/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,17 @@ import (
"github.com/vmware-tanzu/tanzu-framework/pkg/v1/tkg/log"
)

var description = `Deploy and manage single-node, static, environments of Tanzu. This plugin is
ideal for use cases such as local development, testing, and environments offering minimal
resources. Unlike managed environments (facilitated by the management-cluster plugin) it does not
offer cluster-lifecycle management. This means it is not ideal for long-running environments or
environments you plan to run production workloads on. For that, consider creating managed
clusters.`

var descriptor = cliv1alpha1.PluginDescriptor{
Name: "local",
Description: "Manage local environments of Tanzu",
Name: "standalone",
Aliases: []string{"sa"},
Description: description,
Group: cliv1alpha1.RunCmdGroup,
}

Expand Down

0 comments on commit 370ca1c

Please sign in to comment.