33 lines
797 B
YAML
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
|