iching-broker-level1/deployment.yaml
Christopher Hase d2688a6b7b
All checks were successful
ci / build (push) Successful in 1m6s
Probes
2025-03-26 10:31:06 +01:00

33 lines
797 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: iching-broker-0-0-1
namespace: default
spec:
selector:
matchLabels:
app: iching-broker
template:
metadata:
labels:
app: iching-broker
spec:
containers:
- image: forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/devfw-cicd/iching-broker:main
name: iching-broker
livenessProbe:
httpGet:
path: /healthz
port: 8080
initialDelaySeconds: 30
periodSeconds: 15
timeoutSeconds: 5
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 8080
initialDelaySeconds: 20
periodSeconds: 10
timeoutSeconds: 3
successThreshold: 2