From f16a7aa3657333d2f7c71695935979727d4426d4 Mon Sep 17 00:00:00 2001 From: Vojtech Mares Date: Tue, 6 Sep 2022 11:41:19 +0200 Subject: [PATCH] feat(quotas): add storage quotas --- quotas/production/storage.yml | 10 ++++++++++ quotas/staging/storage.yml | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 quotas/production/storage.yml create mode 100644 quotas/staging/storage.yml diff --git a/quotas/production/storage.yml b/quotas/production/storage.yml new file mode 100644 index 0000000..21165c4 --- /dev/null +++ b/quotas/production/storage.yml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: ResourceQuota +metadata: + name: storage +spec: + hard: + requests.storage: 1Gi + persistentvolumeclaims: "3" + local-path.storageclass.storage.k8s.io/requests.storage: 0Mi + local-path.storageclass.storage.k8s.io/persistentvolumeclaims: "0" diff --git a/quotas/staging/storage.yml b/quotas/staging/storage.yml new file mode 100644 index 0000000..21165c4 --- /dev/null +++ b/quotas/staging/storage.yml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: ResourceQuota +metadata: + name: storage +spec: + hard: + requests.storage: 1Gi + persistentvolumeclaims: "3" + local-path.storageclass.storage.k8s.io/requests.storage: 0Mi + local-path.storageclass.storage.k8s.io/persistentvolumeclaims: "0"