k8s/redis/busybox.yaml
2022-03-23 22:18:18 +08:00

22 lines
351 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: test01
labels:
app: busybox
spec:
containers:
- name: test001
image: busybox
command:
- "ping"
args:
- "baidu.com"
resources:
limits:
memory: "400Mi"
cpu: "200m"
requests:
memory: "300Mi"
cpu: "100m"