We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d4fc1d commit 4e2fc81Copy full SHA for 4e2fc81
cmd/ctr/commands/namespaces/namespaces.go
@@ -33,7 +33,7 @@ import (
33
// Command is the cli command for managing namespaces
34
var Command = cli.Command{
35
Name: "namespaces",
36
- Aliases: []string{"namespace"},
+ Aliases: []string{"namespace", "ns"},
37
Usage: "manage namespaces",
38
Subcommands: cli.Commands{
39
createCommand,
@@ -45,6 +45,7 @@ var Command = cli.Command{
45
46
var createCommand = cli.Command{
47
Name: "create",
48
+ Aliases: []string{"c"},
49
Usage: "create a new namespace",
50
ArgsUsage: "<name> [<key>=<value]",
51
Description: "create a new namespace. it must be unique",
0 commit comments