oecis-charts/charts/mirage/templates/deployment.yaml
2024-04-29 18:34:02 +02:00

76 lines
2.4 KiB
YAML

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 }}
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_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 }}
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 }}