46 lines
889 B
YAML
46 lines
889 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: paddleocr
|
|
labels:
|
|
app: paddleocr
|
|
component: n8n
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: paddleocr
|
|
component: n8n
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: paddleocr
|
|
component: n8n
|
|
spec:
|
|
containers:
|
|
- name: paddleocr
|
|
image: c403/paddleocr
|
|
ports:
|
|
- containerPort: 5000
|
|
name: http
|
|
resources:
|
|
requests:
|
|
cpu: 200m
|
|
memory: 512Mi
|
|
limits:
|
|
cpu: 1000m
|
|
memory: 2Gi
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 5000
|
|
initialDelaySeconds: 60
|
|
periodSeconds: 30
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 5000
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 10
|