diff --git a/quotas/production/kube-objects.yml b/quotas/production/kube-objects.yml index a97b3c2..5fb9c8b 100644 --- a/quotas/production/kube-objects.yml +++ b/quotas/production/kube-objects.yml @@ -4,8 +4,6 @@ metadata: name: kube-objects spec: hard: - services.loadbalancers: "0" - count/deployments.apps: "5" count/statefulsets.apps: "0" count/cronjobs.batch: "0" diff --git a/quotas/production/network.yml b/quotas/production/network.yml new file mode 100644 index 0000000..63cbb06 --- /dev/null +++ b/quotas/production/network.yml @@ -0,0 +1,9 @@ + +apiVersion: v1 +kind: ResourceQuota +metadata: + name: network +spec: + hard: + services.loadbalancers: "0" + services.nodeports: "0" diff --git a/quotas/staging/kube-objects.yml b/quotas/staging/kube-objects.yml index db6542b..dbb9720 100644 --- a/quotas/staging/kube-objects.yml +++ b/quotas/staging/kube-objects.yml @@ -4,8 +4,6 @@ metadata: name: kube-objects spec: hard: - services.loadbalancers: "0" - count/deployments.apps: "5" count/statefulsets.apps: "0" count/cronjobs.batch: "0" diff --git a/quotas/staging/network.yml b/quotas/staging/network.yml new file mode 100644 index 0000000..63cbb06 --- /dev/null +++ b/quotas/staging/network.yml @@ -0,0 +1,9 @@ + +apiVersion: v1 +kind: ResourceQuota +metadata: + name: network +spec: + hard: + services.loadbalancers: "0" + services.nodeports: "0"