kubernetes/staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go

var quotaLong

var quotaExample

type QuotaOpts

// NewQuotaOpts creates a new *QuotaOpts with sane defaults
func NewQuotaOpts(ioStreams genericiooptions.IOStreams) *QuotaOpts {}

// NewCmdCreateQuota is a macro command to create a new quota
func NewCmdCreateQuota(f cmdutil.Factory, ioStreams genericiooptions.IOStreams) *cobra.Command {}

// Complete completes all the required options
func (o *QuotaOpts) Complete(f cmdutil.Factory, cmd *cobra.Command, args []string) error {}

// Validate checks to the QuotaOpts to see if there is sufficient information run the command.
func (o *QuotaOpts) Validate() error {}

// Run does the work
func (o *QuotaOpts) Run() error {}

func (o *QuotaOpts) createQuota() (*corev1.ResourceQuota, error) {}

// populateResourceListV1 takes strings of form <resourceName1>=<value1>,<resourceName1>=<value2>
// and returns ResourceList.
func populateResourceListV1(spec string) (corev1.ResourceList, error) {}

func parseScopes(spec string) ([]corev1.ResourceQuotaScope, error) {}