mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Alias fleetctl sandbox to fleetctl preview (#3803)
Preparing for some work the product team is planning to rebrand preview to sandbox.
This commit is contained in:
parent
4d6a844c6a
commit
d55108fcbf
1 changed files with 4 additions and 3 deletions
|
|
@ -41,9 +41,10 @@ const (
|
|||
|
||||
func previewCommand() *cli.Command {
|
||||
return &cli.Command{
|
||||
Name: "preview",
|
||||
Usage: "Start a preview deployment of the Fleet server",
|
||||
Description: `Start a preview deployment of the Fleet server using Docker and docker-compose. Docker tools must be available in the environment.
|
||||
Name: "preview",
|
||||
Aliases: []string{"sandbox"},
|
||||
Usage: "Start a sandbox deployment of the Fleet server",
|
||||
Description: `Start a sandbox deployment of the Fleet server using Docker and docker-compose. Docker tools must be available in the environment.
|
||||
|
||||
Use the stop and reset subcommands to manage the server and dependencies once started.`,
|
||||
Subcommands: []*cli.Command{
|
||||
|
|
|
|||
Loading…
Reference in a new issue