Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add noargs settings #454

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions cli/cmd/cluster_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Use the '--dry-run' flag to simulate the creation process and get an estimated c
replicated cluster create --distribution eks --version 1.21 --nodes 3 --tag env=test --tag project=demo --ttl 24h`,
SilenceUsage: true,
RunE: r.createCluster,
Args: cobra.NoArgs,
}
parent.AddCommand(cmd)
cmd.Flags().StringVar(&r.args.createClusterName, "name", "", "Cluster name (defaults to random name)")
Expand Down
1 change: 1 addition & 0 deletions cli/cmd/vm_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ The command also supports a "--wait" flag to wait for the VMs to be ready before
replicated vm create --distribution ubuntu --version 20.04 --count 5 --instance-type r1.medium --disk 100`,
SilenceUsage: true,
RunE: r.createVM,
Args: cobra.NoArgs,
}
parent.AddCommand(cmd)

Expand Down
Loading