apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "mirage.fullname" . }} labels: {{- include "mirage.labels" . | nindent 4 }} spec: {{- if not .Values.autoscaling.enabled }} replicas: {{ .Values.replicaCount }} {{- end }} selector: matchLabels: {{- include "mirage.selectorLabels" . | nindent 6 }} template: metadata: {{- with .Values.podAnnotations }} annotations: {{- toYaml . | nindent 8 }} {{- end }} labels: {{- include "mirage.selectorLabels" . | nindent 8 }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} serviceAccountName: {{ include "mirage.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} {{- if .Values.mirage.autoMigration }} initContainers: - name: {{ .Chart.Name }}-init command: ["/app/bin/migrate"] securityContext: {{- toYaml .Values.securityContext | nindent 12 }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} env: - name: MIRAGE_SECRET_KEY_BASE valueFrom: secretKeyRef: name: {{ .Values.mirage.secretName }} key: secretKeyBase - name: MIRAGE_HOST_BASE_URL value: {{ .Values.mirage.hostBaseUrl }} - name: MIRAGE_EXTERNAL_KRATOS_BASE_URL value: {{ .Values.mirage.kratos.external }} - name: MIRAGE_INTERNAL_KRATOS_BASE_URL value: {{ .Values.mirage.kratos.internal }} - name: MIRAGE_INTERNAL_HYDRA_BASE_URL value: {{ .Values.mirage.hydra.internal }} - name: MIRAGE_INTERNAL_KETO_BASE_URL value: {{ .Values.mirage.keto.internal }} - name: MIRAGE_DB_USER value: {{ .Values.mirage.db.user }} - name: MIRAGE_DB_PASSWORD {{- if .Values.mirage.db.existingSecret }} valueFrom: secretKeyRef: name: {{ .Values.mirage.db.existingSecret }} key: {{ .Values.mirage.db.secretKeys.dbPasswordKey }} {{- else }} value: {{ .Values.config.db.password }} {{- end }} - name: MIRAGE_DB_HOST value: {{ .Values.mirage.db.host }} - name: MIRAGE_DB_PORT value: {{ .Values.mirage.db.port | quote }} - name: MIRAGE_DB_NAME value: {{ .Values.mirage.db.database | quote }} resources: {{- toYaml .Values.resources | nindent 12 }} {{- end }} containers: - name: {{ .Chart.Name }} securityContext: {{- toYaml .Values.securityContext | nindent 12 }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - name: http containerPort: {{ .Values.service.port }} protocol: TCP livenessProbe: httpGet: path: / port: http readinessProbe: httpGet: path: / port: http env: - name: MIRAGE_CANARY value: {{ .Values.mirage.canary }} - name: MIRAGE_SECRET_KEY_BASE valueFrom: secretKeyRef: name: {{ .Values.mirage.secretName }} key: secretKeyBase - name: MIRAGE_HOST_BASE_URL value: {{ .Values.mirage.hostBaseUrl }} - name: MIRAGE_EXTERNAL_KRATOS_BASE_URL value: {{ .Values.mirage.kratos.external }} - name: MIRAGE_INTERNAL_KRATOS_BASE_URL value: {{ .Values.mirage.kratos.internal }} - name: MIRAGE_INTERNAL_HYDRA_BASE_URL value: {{ .Values.mirage.hydra.internal }} - name: MIRAGE_INTERNAL_KETO_BASE_URL value: {{ .Values.mirage.keto.internal }} - name: MIRAGE_DB_USER value: {{ .Values.mirage.db.user }} - name: MIRAGE_DB_PASSWORD {{- if .Values.mirage.db.existingSecret }} valueFrom: secretKeyRef: name: {{ .Values.mirage.db.existingSecret }} key: {{ .Values.mirage.db.secretKeys.dbPasswordKey }} {{- else }} value: {{ .Values.config.db.password }} {{- end }} - name: MIRAGE_DB_HOST value: {{ .Values.mirage.db.host }} - name: MIRAGE_DB_PORT value: {{ .Values.mirage.db.port | quote }} - name: MIRAGE_DB_NAME value: {{ .Values.mirage.db.database | quote }} resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }}