2024-02-28 09:09:31 +01:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: {{ include "matrix-authentication-service.fullname" . }}
|
|
|
|
labels:
|
|
|
|
{{- include "matrix-authentication-service.labels" . | nindent 4 }}
|
|
|
|
spec:
|
|
|
|
{{- if not .Values.autoscaling.enabled }}
|
|
|
|
replicas: {{ .Values.replicaCount }}
|
|
|
|
{{- end }}
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
{{- include "matrix-authentication-service.selectorLabels" . | nindent 6 }}
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
annotations:
|
|
|
|
checksum/secrets: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
|
|
|
|
{{- with .Values.podAnnotations }}
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
labels:
|
|
|
|
{{- include "matrix-authentication-service.labels" . | nindent 8 }}
|
|
|
|
{{- with .Values.podLabels }}
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
spec:
|
|
|
|
{{- with .Values.imagePullSecrets }}
|
|
|
|
imagePullSecrets:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
serviceAccountName: {{ include "matrix-authentication-service.serviceAccountName" . }}
|
|
|
|
securityContext:
|
|
|
|
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
2024-03-11 22:50:34 +01:00
|
|
|
initContainers:
|
|
|
|
- name: database-migrate
|
|
|
|
securityContext:
|
|
|
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
|
|
|
{{- with .Values.image }}
|
|
|
|
image: "{{ coalesce $.Values.global.image.registry .registry }}/{{ .repository }}:{{ .tag | default $.Chart.AppVersion }}"
|
|
|
|
imagePullPolicy: {{ coalesce $.Values.global.image.pullPolicy .pullPolicy }}
|
|
|
|
{{- end }}
|
|
|
|
env:
|
|
|
|
- name: "MAS_CONFIG"
|
|
|
|
value: "/etc/mas-config.yaml"
|
|
|
|
command:
|
|
|
|
- /usr/local/bin/mas-cli
|
|
|
|
- database
|
|
|
|
- migrate
|
|
|
|
resources:
|
|
|
|
{{- toYaml .Values.resources | nindent 12 }}
|
|
|
|
volumeMounts:
|
|
|
|
- name: config
|
|
|
|
mountPath: "/etc/mas-config.yaml"
|
|
|
|
subPath: "mas-config.yaml"
|
|
|
|
readOnly: true
|
|
|
|
{{- with .Values.volumeMounts }}
|
|
|
|
{{- toYaml . | nindent 12 }}
|
|
|
|
{{- end }}
|
|
|
|
- name: config-sync
|
|
|
|
securityContext:
|
|
|
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
|
|
|
{{- with .Values.image }}
|
|
|
|
image: "{{ coalesce $.Values.global.image.registry .registry }}/{{ .repository }}:{{ .tag | default $.Chart.AppVersion }}"
|
|
|
|
imagePullPolicy: {{ coalesce $.Values.global.image.pullPolicy .pullPolicy }}
|
|
|
|
{{- end }}
|
|
|
|
env:
|
|
|
|
- name: "MAS_CONFIG"
|
|
|
|
value: "/etc/mas-config.yaml"
|
|
|
|
command:
|
|
|
|
- /usr/local/bin/mas-cli
|
|
|
|
- config
|
|
|
|
- sync
|
|
|
|
resources:
|
|
|
|
{{- toYaml .Values.resources | nindent 12 }}
|
|
|
|
volumeMounts:
|
|
|
|
- name: config
|
|
|
|
mountPath: "/etc/mas-config.yaml"
|
|
|
|
subPath: "mas-config.yaml"
|
|
|
|
readOnly: true
|
|
|
|
{{- with .Values.volumeMounts }}
|
|
|
|
{{- toYaml . | nindent 12 }}
|
|
|
|
{{- end }}
|
2024-02-28 09:09:31 +01:00
|
|
|
containers:
|
|
|
|
- name: {{ .Chart.Name }}
|
|
|
|
securityContext:
|
|
|
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
|
|
|
{{- with .Values.image }}
|
|
|
|
image: "{{ coalesce $.Values.global.image.registry .registry }}/{{ .repository }}:{{ .tag | default $.Chart.AppVersion }}"
|
|
|
|
imagePullPolicy: {{ coalesce $.Values.global.image.pullPolicy .pullPolicy }}
|
|
|
|
{{- end }}
|
|
|
|
env:
|
|
|
|
- name: "MAS_CONFIG"
|
|
|
|
value: "/etc/mas-config.yaml"
|
|
|
|
ports:
|
|
|
|
- name: http
|
2024-06-05 17:40:38 +02:00
|
|
|
containerPort: {{ .Values.service.port.http }}
|
2024-02-28 09:09:31 +01:00
|
|
|
protocol: TCP
|
|
|
|
- name: internal
|
|
|
|
containerPort: 8081
|
|
|
|
protocol: TCP
|
2024-06-05 17:40:38 +02:00
|
|
|
{{- with .Values.service.port.metrics }}
|
2024-02-28 09:09:31 +01:00
|
|
|
- name: metrics
|
2024-06-05 17:40:38 +02:00
|
|
|
containerPort: {{ . }}
|
2024-02-28 09:09:31 +01:00
|
|
|
protocol: TCP
|
2024-06-05 17:40:38 +02:00
|
|
|
{{- end }}
|
2024-02-28 09:09:31 +01:00
|
|
|
livenessProbe:
|
|
|
|
{{- toYaml .Values.livenessProbe | nindent 12 }}
|
|
|
|
readinessProbe:
|
|
|
|
{{- toYaml .Values.readinessProbe | nindent 12 }}
|
|
|
|
resources:
|
|
|
|
{{- toYaml .Values.resources | nindent 12 }}
|
|
|
|
volumeMounts:
|
|
|
|
- name: config
|
2024-03-11 22:50:34 +01:00
|
|
|
mountPath: "/etc/mas-config.yaml"
|
|
|
|
subPath: "mas-config.yaml"
|
2024-02-28 09:09:31 +01:00
|
|
|
readOnly: true
|
|
|
|
{{- with .Values.volumeMounts }}
|
|
|
|
{{- toYaml . | nindent 12 }}
|
|
|
|
{{- end }}
|
|
|
|
volumes:
|
|
|
|
- name: config
|
|
|
|
secret:
|
|
|
|
secretName: {{ include "matrix-authentication-service.fullname" . }}
|
|
|
|
items:
|
|
|
|
- key: "config.yaml"
|
|
|
|
path: "mas-config.yaml"
|
|
|
|
{{- with .Values.volumes }}
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.nodeSelector }}
|
|
|
|
nodeSelector:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.affinity }}
|
|
|
|
affinity:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.tolerations }}
|
|
|
|
tolerations:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|