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