13 lines
232 B
YAML
13 lines
232 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: my-pod
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: busybox
|
||
|
image:busybox
|
||
|
resources:
|
||
|
limits:
|
||
|
cpu: "250m" # 250 milliCPU = 1/4 CPU
|
||
|
memory: "128Mi" # 128 mebibytes
|