forked from redhat-et/rosa-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
porting operate-first resource quotas
Signed-off-by: greg pereira <[email protected]>
- Loading branch information
0 parents
commit bb7d34f
Showing
8 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
cluster-scope/components/resourcequotas/large/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,6 @@ | ||
--- | ||
apiVersion: kustomize.config.k8s.io/v1alpha1 | ||
kind: Component | ||
|
||
resources: | ||
- ./resourcequotas.yaml |
12 changes: 12 additions & 0 deletions
12
cluster-scope/components/resourcequotas/large/resourcequotas.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: large | ||
spec: | ||
hard: | ||
requests.cpu: '4' | ||
requests.memory: 16Gi | ||
limits.cpu: '4' | ||
limits.memory: 16Gi | ||
requests.storage: 80Gi | ||
count/objectbucketclaims.objectbucket.io: 1 |
6 changes: 6 additions & 0 deletions
6
cluster-scope/components/resourcequotas/medium/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,6 @@ | ||
--- | ||
apiVersion: kustomize.config.k8s.io/v1alpha1 | ||
kind: Component | ||
|
||
resources: | ||
- ./resourcequotas.yaml |
12 changes: 12 additions & 0 deletions
12
cluster-scope/components/resourcequotas/medium/resourcequotas.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: medium | ||
spec: | ||
hard: | ||
requests.cpu: '2' | ||
requests.memory: 8Gi | ||
limits.cpu: '2' | ||
limits.memory: 8Gi | ||
requests.storage: 40Gi | ||
count/objectbucketclaims.objectbucket.io: 1 |
6 changes: 6 additions & 0 deletions
6
cluster-scope/components/resourcequotas/small/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,6 @@ | ||
--- | ||
apiVersion: kustomize.config.k8s.io/v1alpha1 | ||
kind: Component | ||
|
||
resources: | ||
- ./resourcequotas.yaml |
12 changes: 12 additions & 0 deletions
12
cluster-scope/components/resourcequotas/small/resourcequotas.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: small | ||
spec: | ||
hard: | ||
requests.cpu: '1' | ||
requests.memory: 4Gi | ||
limits.cpu: '1' | ||
limits.memory: 4Gi | ||
requests.storage: 20Gi | ||
count/objectbucketclaims.objectbucket.io: 1 |
6 changes: 6 additions & 0 deletions
6
cluster-scope/components/resourcequotas/x-small/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,6 @@ | ||
--- | ||
apiVersion: kustomize.config.k8s.io/v1alpha1 | ||
kind: Component | ||
|
||
resources: | ||
- ./resourcequotas.yaml |
12 changes: 12 additions & 0 deletions
12
cluster-scope/components/resourcequotas/x-small/resourcequotas.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: x-small | ||
spec: | ||
hard: | ||
requests.cpu: '500m' | ||
requests.memory: 2Gi | ||
limits.cpu: '500m' | ||
limits.memory: 2Gi | ||
requests.storage: 10Gi | ||
count/objectbucketclaims.objectbucket.io: 1 |