我知道我们可以通过使用autherisatoin(RBAC策略)限制用户访问资源。但有没有什么方法可以自定义用户可以在群集中创建的pod或容器的数量?
答案 0 :(得分:1)
让我们先来看一个命名空间,现在我们可以通过使用 ResourceQuota 命名空间来限制阶段正在运行或待处理的活动pod的数量。 例如
apiVersion: v1
kind: ResourceQuota
metadata:
name: quota
spec:
hard:
metadata:
name: object-counts
spec:
hard:
configmaps: "10"
persistentvolumeclaims: "4"
secrets: "10"
pods:"20"
services: "10"
services.loadbalancers: "2"
我附上了进一步研究的链接resource-quota