All checks were successful
Deploy Promiscuity Auth API / deploy (push) Successful in 48s
Deploy Promiscuity Character API / deploy (push) Successful in 59s
Deploy Promiscuity Inventory API / deploy (push) Successful in 46s
Deploy Promiscuity Locations API / deploy (push) Successful in 1m0s
Deploy Promiscuity Mail API / deploy (push) Successful in 1m9s
k8s smoke test / test (push) Successful in 9s
29 lines
614 B
YAML
29 lines
614 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: promiscuity-mail
|
|
labels:
|
|
app: promiscuity-mail
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: promiscuity-mail
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: promiscuity-mail
|
|
spec:
|
|
containers:
|
|
- name: promiscuity-mail
|
|
image: promiscuity-mail:latest
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- containerPort: 5004
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: 5004
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 10
|