1 Star 0 Fork 0

zhuchance/kubernetes

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
.github
Godeps
api
build
cluster
cmd
docs
examples
hack
logo
pkg
api
apis
auth
capabilities
client
cloudprovider
controller
credentialprovider
features
fieldpath
generated
kubeapiserver
kubectl
apply
apps
categories
cmd
auth
config
resource
rollout
set
templates
testdata/edit
testing
util
BUILD
alpha.go
annotate.go
annotate_test.go
apiversions.go
apply.go
apply_edit_last_applied.go
apply_set_last_applied.go
apply_test.go
apply_view_last_applied.go
attach.go
attach_test.go
autoscale.go
certificates.go
clusterinfo.go
clusterinfo_dump.go
clusterinfo_dump_test.go
cmd.go
cmd_test.go
completion.go
convert.go
convert_test.go
cp.go
cp_test.go
create.go
create_clusterrole.go
create_clusterrole_test.go
create_clusterrolebinding.go
create_clusterrolebinding_test.go
create_configmap.go
create_configmap_test.go
create_deployment.go
create_deployment_test.go
create_job.go
create_job_test.go
create_namespace.go
create_namespace_test.go
create_pdb.go
create_pdb_test.go
create_priorityclass.go
create_priorityclass_test.go
create_quota.go
create_quota_test.go
create_role.go
create_role_test.go
create_rolebinding.go
create_rolebinding_test.go
create_secret.go
create_secret_test.go
create_service.go
create_service_test.go
create_serviceaccount.go
create_serviceaccount_test.go
create_test.go
delete.go
delete_test.go
describe.go
describe_test.go
diff.go
diff_test.go
drain.go
drain_test.go
edit.go
edit_test.go
exec.go
exec_test.go
explain.go
expose.go
expose_test.go
help.go
label.go
label_test.go
logs.go
logs_test.go
options.go
patch.go
patch_test.go
plugin.go
plugin_test.go
portforward.go
portforward_test.go
proxy.go
replace.go
replace_test.go
rollingupdate.go
rollingupdate_test.go
run.go
run_test.go
scale.go
taint.go
taint_test.go
top.go
top_node.go
top_node_test.go
top_pod.go
top_pod_test.go
top_test.go
version.go
explain
metricsutil
plugins
proxy
resource
scheme
util
validation
.import-restrictions
BUILD
OWNERS
apply.go
autoscale.go
autoscale_test.go
bash_comp_utils.go
clusterrolebinding.go
clusterrolebinding_test.go
conditions.go
configmap.go
configmap_test.go
delete.go
delete_test.go
deployment.go
deployment_test.go
doc.go
env_file.go
env_file_test.go
generate.go
generate_test.go
history.go
history_test.go
interfaces.go
kubectl.go
namespace.go
namespace_test.go
pdb.go
pdb_test.go
priorityclass.go
priorityclass_test.go
quota.go
quota_test.go
resource_filter.go
resource_filter_test.go
rolebinding.go
rolebinding_test.go
rollback.go
rollback_test.go
rolling_updater.go
rolling_updater_test.go
rollout_status.go
rollout_status_test.go
run.go
run_test.go
scale.go
scale_test.go
secret.go
secret_for_docker_registry.go
secret_for_docker_registry_test.go
secret_for_tls.go
secret_for_tls_test.go
secret_test.go
service.go
service_basic.go
service_basic_test.go
service_test.go
serviceaccount.go
serviceaccount_test.go
sorting_printer.go
sorting_printer_test.go
kubelet
kubemark
master
printers
probe
proxy
quota
registry
routes
scheduler
security
securitycontext
serviceaccount
ssh
util
version
volume
watch/json
windows/service
.import-restrictions
BUILD
OWNERS
plugin
staging
test
third_party
translations
vendor
.bazelrc
.generated_files
.gitattributes
.gitignore
.kazelcfg.json
BUILD.bazel
CHANGELOG-1.10.md
CHANGELOG.md
CONTRIBUTING.md
LICENSE
Makefile
Makefile.generated_files
OWNERS
OWNERS_ALIASES
README.md
SUPPORT.md
WORKSPACE
code-of-conduct.md
labels.yaml
克隆/下载
create_quota.go 3.18 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright 2016 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cmd
import (
"io"
"github.com/spf13/cobra"
"k8s.io/kubernetes/pkg/kubectl"
"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
"k8s.io/kubernetes/pkg/kubectl/util/i18n"
)
var (
quotaLong = templates.LongDesc(i18n.T(`
Create a resourcequota with the specified name, hard limits and optional scopes`))
quotaExample = templates.Examples(i18n.T(`
# Create a new resourcequota named my-quota
kubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3,replicationcontrollers=2,resourcequotas=1,secrets=5,persistentvolumeclaims=10
# Create a new resourcequota named best-effort
kubectl create quota best-effort --hard=pods=100 --scopes=BestEffort`))
)
// NewCmdCreateQuota is a macro command to create a new quota
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]",
DisableFlagsInUseLine: true,
Aliases: []string{"resourcequota"},
Short: i18n.T("Create a quota with the specified name."),
Long: quotaLong,
Example: quotaExample,
Run: func(cmd *cobra.Command, args []string) {
err := CreateQuota(f, cmdOut, cmd, args)
cmdutil.CheckErr(err)
},
}
cmdutil.AddApplyAnnotationFlags(cmd)
cmdutil.AddValidateFlags(cmd)
cmdutil.AddPrinterFlags(cmd)
cmdutil.AddGeneratorFlags(cmd, cmdutil.ResourceQuotaV1GeneratorName)
cmd.Flags().String("hard", "", i18n.T("A comma-delimited set of resource=quantity pairs that define a hard limit."))
cmd.Flags().String("scopes", "", i18n.T("A comma-delimited set of quota scopes that must all match each object tracked by the quota."))
return cmd
}
// CreateQuota implements the behavior to run the create quota command
func CreateQuota(f cmdutil.Factory, cmdOut io.Writer, cmd *cobra.Command, args []string) error {
name, err := NameFromCommandArgs(cmd, args)
if err != nil {
return err
}
var generator kubectl.StructuredGenerator
switch generatorName := cmdutil.GetFlagString(cmd, "generator"); generatorName {
case cmdutil.ResourceQuotaV1GeneratorName:
generator = &kubectl.ResourceQuotaGeneratorV1{
Name: name,
Hard: cmdutil.GetFlagString(cmd, "hard"),
Scopes: cmdutil.GetFlagString(cmd, "scopes"),
}
default:
return errUnsupportedGenerator(cmd, generatorName)
}
return RunCreateSubcommand(f, cmd, cmdOut, &CreateSubcommandOptions{
Name: name,
StructuredGenerator: generator,
DryRun: cmdutil.GetDryRunFlag(cmd),
OutputFormat: cmdutil.GetFlagString(cmd, "output"),
})
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/meoom/kubernetes.git
git@gitee.com:meoom/kubernetes.git
meoom
kubernetes
kubernetes
v1.10.12-beta.0

搜索帮助