Files
otel-quarkus-demo/k3s/deployment.yaml
2026-05-29 16:17:38 +02:00

17 lines
555 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata: { name: otel-quarkus-demo }
spec:
replicas: 1
selector: { matchLabels: { app: otel-quarkus-demo } }
template:
metadata: { labels: { app: otel-quarkus-demo } }
spec:
containers:
- name: app
image: rm.vdi-linux-cvl.local/global/quarkus-app:latest
imagePullPolicy: IfNotPresent
ports: [{ containerPort: 8080 }]
readinessProbe: { httpGet: { path: /q/health/ready, port: 8080 } }
livenessProbe: { httpGet: { path: /q/health/live, port: 8080 } }