29 lines
545 B
YAML
29 lines
545 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: mev-inspect
|
|
labels:
|
|
app: mev-inspect
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: mev-inspect
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: mev-inspect
|
|
spec:
|
|
containers:
|
|
- name: mev-inspect
|
|
image: mev-inspect:latest
|
|
command: [ "/bin/bash", "-c", "--" ]
|
|
args: [ "while true; do sleep 30; done;" ]
|
|
livenessProbe:
|
|
exec:
|
|
command:
|
|
- ls
|
|
- /
|
|
initialDelaySeconds: 20
|
|
periodSeconds: 5
|