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