k3s/namespaces/apps/tika/patches/deployment.yaml

34 lines
780 B
YAML
Raw Normal View History

2025-01-31 10:33:56 -05:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: app
spec:
template:
spec:
containers:
- name: tika
image: docker.io/apache/tika:latest
imagePullPolicy: IfNotPresent
ports:
- containerPort: 9998
2025-01-31 16:14:15 -05:00
name: tika
2025-01-31 10:33:56 -05:00
livenessProbe:
httpGet:
scheme: HTTP
path: /
2025-01-31 16:14:15 -05:00
port: tika
2025-01-31 10:33:56 -05:00
initialDelaySeconds: 60
periodSeconds: 10
readinessProbe:
httpGet:
scheme: HTTP
path: /
2025-01-31 16:14:15 -05:00
port: tika
2025-01-31 10:33:56 -05:00
initialDelaySeconds: 30
periodSeconds: 10
startupProbe:
httpGet:
scheme: HTTP
path: /
2025-01-31 16:14:15 -05:00
port: tika