namespace名称空间资源限制

为什么要对namespace做资源限制?

防止该命名空间部署的服务超过服务器的现有资源影响其他服务。

怎么限制?

使用yaml资源清单文件

apiVersion: v1
kind: ResourceQuota
metadata:
  name: mem-cpu-quota
  namespace: test
spec:
  hard:
    requests.cpu: '2'
    requests.memory: 2Gi
    limits.cpu: '4'
    limits.memory: 4Gi
kubectl create namespace test
kubectl apply -f namespace-quota.yaml

查看名称空间test的状态信息

发表评论

后才能评论