49 lines
1.4 KiB
YAML
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
|