Zeeshaun 9a7d6544ef
All checks were successful
Deploy Promiscuity Auth API / deploy (push) Successful in 46s
Deploy Promiscuity Character API / deploy (push) Successful in 46s
Deploy Promiscuity Locations API / deploy (push) Successful in 46s
k8s smoke test / test (push) Successful in 7s
Adding inventory microservice
2026-03-15 10:21:49 -05:00

29 lines
644 B
YAML

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