22 lines
420 B
YAML
22 lines
420 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: worker
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: worker
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: worker
|
|
spec:
|
|
containers:
|
|
- name: worker
|
|
image: localhost:5000/worker:20250523-013457
|
|
tolerations:
|
|
- key: "node.kubernetes.io/disk-pressure"
|
|
operator: "Exists"
|
|
effect: "NoSchedule"
|