Skip to content
This repository was archived by the owner on Jan 29, 2025. It is now read-only.

Commit 8b03fbc

Browse files
killianmuldoontogashidm
authored andcommitted
Add limits and requests to TAS deployment yaml
This change adds limits and requests to the Kubernetes deployment yaml for TAS. The limits are set high to ensure no disruption and prevent resource over usage.
1 parent 317cbd0 commit 8b03fbc

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

telemetry-aware-scheduling/deploy/tas-deployment.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ spec:
3131
volumeMounts:
3232
- name: certs
3333
mountPath: /tas/cert
34+
resources:
35+
limits:
36+
memory: "500Mi"
37+
cpu: "500m"
38+
requests:
39+
memory: "100Mi"
40+
cpu: "100m"
3441
volumes:
3542
- name: certs
3643
secret:
@@ -45,3 +52,4 @@ spec:
4552
- matchExpressions:
4653
- key: node-role.kubernetes.io/master
4754
operator: Exists
55+

0 commit comments

Comments
 (0)