28 lines
503 B
YAML
28 lines
503 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: nginx-busybox-burstable
|
|
labels:
|
|
app: demo-burstable
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:stable
|
|
resources:
|
|
requests:
|
|
memory: "300Mi"
|
|
cpu: "200m"
|
|
limits:
|
|
memory: "600Mi"
|
|
cpu: "500m"
|
|
- name: busybox
|
|
image: busybox
|
|
command: ["sh", "-c", "sleep 3600"]
|
|
resources:
|
|
requests:
|
|
memory: "100Mi"
|
|
cpu: "50m"
|
|
limits:
|
|
memory: "200Mi"
|
|
cpu: "150m"
|