helm-charts/mautrix-bridge/templates/deployment.yaml

101 lines
3.5 KiB
YAML
Raw Permalink Normal View History

2024-02-19 00:08:20 +01:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "mautrix-bridge.fullname" . }}
2024-02-19 00:08:20 +01:00
labels:
{{- include "mautrix-bridge.labels" . | nindent 4 }}
2024-02-19 00:08:20 +01:00
spec:
{{- if not .Values.autoscaling.enabled }}
replicas: {{ .Values.replicaCount }}
{{- end }}
selector:
matchLabels:
{{- include "mautrix-bridge.selectorLabels" . | nindent 6 }}
2024-02-19 00:08:20 +01:00
template:
metadata:
annotations:
"checksum/secret": {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
{{- with .Values.podAnnotations }}
{{- toYaml . | nindent 8 }}
{{- end }}
labels:
{{- include "mautrix-bridge.labels" . | nindent 8 }}
2024-02-19 00:08:20 +01:00
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
serviceAccountName: {{ include "mautrix-bridge.serviceAccountName" . }}
2024-02-19 00:08:20 +01:00
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
- name: {{ .Chart.Name }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
{{- with .Values.image }}
image: "{{ coalesce $.Values.global.image.registry .registry }}/{{ .repository }}:{{ .tag }}"
2024-02-19 00:08:20 +01:00
imagePullPolicy: {{ coalesce $.Values.global.image.pullPolicy .pullPolicy }}
{{- end }}
ports:
- name: http
containerPort: {{ .Values.config.appservice.port }}
protocol: TCP
livenessProbe:
{{- toYaml .Values.livenessProbe | nindent 12 }}
readinessProbe:
{{- toYaml .Values.readinessProbe | nindent 12 }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:
- name: data
mountPath: /data
- name: config
mountPath: /data/config.yaml
subPath: config.yaml
- name: config
mountPath: /data/registration.yaml
subPath: registration.yaml
{{- with .Values.volumeMounts }}
{{- toYaml . | nindent 12 }}
{{- end }}
volumes:
- name: config
secret:
secretName: {{ include "mautrix-bridge.fullname" . }}
2024-02-19 00:08:20 +01:00
items:
- key: config.yaml
path: config.yaml
- key: registration.yaml
path: registration.yaml
- name: "data"
{{- if .Values.persistence.enabled }}
{{- if .Values.persistence.hostPath }}
hostPath:
type: Directory
path: {{ .Values.persistence.hostPath | quote }}
{{- else }}{{/* else .persistence.hostPath */}}
persistentVolumeClaim:
claimName: {{ coalesce .Values.persistence.existingClaim (include "mautrix-bridge.fullname" .) }}
2024-02-19 00:08:20 +01:00
{{- end }}{{/* end-else .persistence.hostPath */}}
{{- else }}{{/* else .persistence.enabled */}}
emptyDir: {}
{{- end }}{{/* end-else .persistence.enabled */}}
{{- 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 }}