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

33 lines
780 B
YAML

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
name: tika
livenessProbe:
httpGet:
scheme: HTTP
path: /
port: tika
initialDelaySeconds: 60
periodSeconds: 10
readinessProbe:
httpGet:
scheme: HTTP
path: /
port: tika
initialDelaySeconds: 30
periodSeconds: 10
startupProbe:
httpGet:
scheme: HTTP
path: /
port: tika