Files
promiscuity/microservices/AuthApi/k8s/deployment.yaml
T
admin 94ffe6e7b7
Deploy Promiscuity Auth API / deploy (push) Successful in 1m29s
k8s smoke test / test (push) Successful in 20s
Add versioned legal consent to authentication
2026-07-20 02:16:02 -05:00

49 lines
1.4 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"
- name: Legal__TermsVersion
value: "2026-07-20"
- name: Legal__PrivacyVersion
value: "2026-07-20"
- name: Legal__EffectiveUtc
value: "2026-07-20T00:00:00Z"
readinessProbe:
httpGet:
path: /healthz
port: 5000
initialDelaySeconds: 5
periodSeconds: 10