hz 59e33760ad
All checks were successful
Deploy Promiscuity Auth API / deploy (push) Successful in 53s
k8s smoke test / test (push) Successful in 5s
Adding k8s configs to auth microservice
2025-11-23 08:31:12 -06:00

29 lines
614 B
YAML

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