From 0beca8e6be88347e1e597b00d045370ae1c8516e Mon Sep 17 00:00:00 2001 From: deads2k Date: Thu, 4 Aug 2016 08:02:14 -0400 Subject: [PATCH] replace improper create quota alias --- pkg/kubectl/cmd/create_quota.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubectl/cmd/create_quota.go b/pkg/kubectl/cmd/create_quota.go index 2be38d436e5..59ab9e5d6e5 100644 --- a/pkg/kubectl/cmd/create_quota.go +++ b/pkg/kubectl/cmd/create_quota.go @@ -41,7 +41,7 @@ Create a resourcequota with the specified name, hard limits and optional scopes` func NewCmdCreateQuota(f *cmdutil.Factory, cmdOut io.Writer) *cobra.Command { cmd := &cobra.Command{ Use: "quota NAME [--hard=key1=value1,key2=value2] [--scopes=Scope1,Scope2] [--dry-run=bool]", - Aliases: []string{"q"}, + Aliases: []string{"resourcequota"}, Short: "Create a quota with the specified name.", Long: quotaLong, Example: quotaExample,