mirror of
https://gitlab.com/oecis/charts.git
synced 2024-11-15 00:28:59 +00:00
96 lines
3.2 KiB
YAML
96 lines
3.2 KiB
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: {{ include "hortusfox.fullname" . }}
|
||
|
labels:
|
||
|
{{- include "hortusfox.labels" . | nindent 4 }}
|
||
|
spec:
|
||
|
{{- if not .Values.autoscaling.enabled }}
|
||
|
replicas: {{ .Values.replicaCount }}
|
||
|
{{- end }}
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
{{- include "hortusfox.selectorLabels" . | nindent 6 }}
|
||
|
template:
|
||
|
metadata:
|
||
|
{{- with .Values.podAnnotations }}
|
||
|
annotations:
|
||
|
{{- toYaml . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
labels:
|
||
|
{{- include "hortusfox.labels" . | nindent 8 }}
|
||
|
{{- with .Values.podLabels }}
|
||
|
{{- toYaml . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
{{- with .Values.imagePullSecrets }}
|
||
|
imagePullSecrets:
|
||
|
{{- toYaml . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
serviceAccountName: {{ include "hortusfox.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:
|
||
|
{{- toYaml .Values.livenessProbe | nindent 12 }}
|
||
|
readinessProbe:
|
||
|
{{- toYaml .Values.readinessProbe | nindent 12 }}
|
||
|
resources:
|
||
|
{{- toYaml .Values.resources | nindent 12 }}
|
||
|
env:
|
||
|
- name: APP_ADMIN_MAIL
|
||
|
valueFrom:
|
||
|
secretKeyRef:
|
||
|
name: {{ .Values.config.admin.existingSecret }}
|
||
|
key: {{ .Values.config.admin.mailSecretKey }}
|
||
|
- name: APP_ADMIN_PASSWORD
|
||
|
valueFrom:
|
||
|
secretKeyRef:
|
||
|
name: {{ .Values.config.admin.existingSecret }}
|
||
|
key: {{ .Values.config.admin.passwordSecretKey }}
|
||
|
- name: DB_HOST
|
||
|
value: {{ .Values.config.db.host }}
|
||
|
- name: DB_PORT
|
||
|
value: {{ .Values.config.db.port | quote }}
|
||
|
- name: DB_USERNAME
|
||
|
valueFrom:
|
||
|
secretKeyRef:
|
||
|
name: {{ .Values.config.db.existingSecret }}
|
||
|
key: {{ .Values.config.db.usernameSecretKey }}
|
||
|
- name: DB_PASSWORD
|
||
|
valueFrom:
|
||
|
secretKeyRef:
|
||
|
name: {{ .Values.config.db.existingSecret }}
|
||
|
key: {{ .Values.config.db.passwordSecretKey }}
|
||
|
- name: DB_CHARSET
|
||
|
value: "utf8mb4"
|
||
|
{{- with .Values.volumeMounts }}
|
||
|
volumeMounts:
|
||
|
{{- toYaml . | nindent 12 }}
|
||
|
{{- end }}
|
||
|
{{- with .Values.volumes }}
|
||
|
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 }}
|