Initial release

This commit is contained in:
2026-05-29 16:17:38 +02:00
commit 4762f69095
19 changed files with 1290 additions and 0 deletions

16
k3s/deployment.yaml Normal file
View File

@@ -0,0 +1,16 @@
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 } }

6
k3s/service.yaml Normal file
View File

@@ -0,0 +1,6 @@
apiVersion: v1
kind: Service
metadata: { name: otel-quarkus-demo }
spec:
selector: { app: otel-quarkus-demo }
ports: [{ port: 8080, targetPort: 8080 }]