From c3913a20d8aed1d9e549cdf197352a3748734261 Mon Sep 17 00:00:00 2001 From: Kyle Squizzato Date: Fri, 13 Dec 2024 15:08:42 -0800 Subject: [PATCH] chore(cmx): update cluster subcommand example to use nodegroup ls (#480) The prior example used 'replicated cluster nodegroup create' which isn't yet implemented. Change to an example that actually works. Signed-off-by: Kyle Squizzato --- cli/cmd/cluster.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/cmd/cluster.go b/cli/cmd/cluster.go index 9662601f..0a85d8be 100644 --- a/cli/cmd/cluster.go +++ b/cli/cmd/cluster.go @@ -26,8 +26,8 @@ func (r *runners) InitClusterCommand(parent *cobra.Command) *cobra.Command { # Remove a specific cluster by ID replicated cluster rm - # Create a node group within a specific cluster - replicated cluster nodegroup create --cluster-id --instance-type m6.large --nodes 3`, + # List all nodegroups in a specific cluster + replicated cluster nodegroup ls `, } parent.AddCommand(cmd)