Create quota-mem-cpu-pod.yaml

This commit is contained in:
Sabbir Ahmed Shameem 2024-05-05 22:24:31 +06:00 committed by GitHub
parent c7503a802f
commit 7fc140b8d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: quota-mem-cpu-demo
spec:
containers:
- name: quota-mem-cpu-demo-ctr
image: nginx
resources:
limits:
memory: "800Mi"
cpu: "800m"
requests:
memory: "600Mi"
cpu: "400m"