24 lines
446 B
YAML
24 lines
446 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
app: busy-dep
|
|
name: busy-dep
|
|
namespace: wk
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: busy-dep
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: busy-dep
|
|
spec:
|
|
containers:
|
|
- image: ccr-29eug8s3-vpc.cnc.bj.baidubce.com/public/busybox
|
|
name: busybox
|
|
command: ["/bin/sh","-c","sleep 3600"]
|
|
nodeSelector:
|
|
disktype: ssd
|