hz 599f0972af
All checks were successful
Deploy Promiscuity Auth API / deploy (push) Successful in 45s
Deploy Promiscuity Character API / deploy (push) Successful in 55s
k8s smoke test / test (push) Successful in 7s
align the deployment to the actual listening port (5000).
2026-01-07 18:08:23 -06:00

29 lines
644 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: promiscuity-character
labels:
app: promiscuity-character
spec:
replicas: 2
selector:
matchLabels:
app: promiscuity-character
template:
metadata:
labels:
app: promiscuity-character
spec:
containers:
- name: promiscuity-character
image: promiscuity-character:latest
imagePullPolicy: IfNotPresent
ports:
- containerPort: 5001
readinessProbe:
httpGet:
path: /healthz
port: 5001
initialDelaySeconds: 5
periodSeconds: 10