-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ope-course-quota resourceQuota to cluster-scope components
Closes: nerc-project/operations#377 Adding this resourceQuota as a component at the cluster scope and adding it to the rhods-notebooks namespace in the prod cluster. The quota values themselves were determined based on our resourceQuota in the namespace where we did scale testing, with a bump to accomodate all the expected students
- Loading branch information
Showing
3 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
cluster-scope/components/resourcequotas/ope-course-quota/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
apiVersion: kustomize.config.k8s.io/v1alpha1 | ||
kind: Component | ||
resources: | ||
- resourcequota.yaml |
12 changes: 12 additions & 0 deletions
12
cluster-scope/components/resourcequotas/ope-course-quota/resourcequota.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
kind: ResourceQuota | ||
apiVersion: v1 | ||
metadata: | ||
name: ope-course-quota | ||
namespace: rhods-notebooks | ||
spec: | ||
hard: | ||
limits.cpu: '1000' | ||
limits.ephemeral-storage: 30Gi | ||
limits.memory: 3000000Mi | ||
persistentvolumeclaims: '400' | ||
requests.storage: 400Gi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters