Deploy Promiscuity Auth API / deploy (push) Failing after 20s
Deploy Promiscuity Character API / deploy (push) Failing after 19s
Deploy Promiscuity Crafting API / deploy (push) Failing after 20s
Deploy Promiscuity Inventory API / deploy (push) Failing after 19s
Deploy Promiscuity Locations API / deploy (push) Failing after 19s
Deploy Promiscuity Mail API / deploy (push) Failing after 20s
Deploy Promiscuity World API / deploy (push) Failing after 20s
k8s smoke test / test (push) Failing after 20s
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
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
|
|
env:
|
|
- name: QuestionsApi__BaseUrl
|
|
value: http://step3-questions.step3-questions.svc.cluster.local
|
|
- name: InternalPurge__Secret
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: medmind-internal-api
|
|
key: purge-secret
|
|
- name: Steam__Realm
|
|
value: https://pauth.ranaze.com
|
|
- name: Steam__ReturnUrl
|
|
value: https://pauth.ranaze.com/api/Auth/steam/callback
|
|
- name: Steam__TransactionTtlMinutes
|
|
value: "5"
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: 5000
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 10
|