Files
chart/library/ix-dev/community/vaultwarden/templates/_postgres.tpl
Stavros Kois 846a6a02c4 NAS-121156 / 23.10 / Add vaultwarden to community train (#1055)
* Add vaultwarden to community train

* add variable only when set

* Update library/ix-dev/community/vaultwarden/values.yaml

* Update library/ix-dev/community/vaultwarden/values.yaml

* add NET_BIND_SERVICE

* minor typo

* use the new common

* Update common

* add upgrade_info.json

* remove the capability, and bump to fixed version
2023-04-04 09:52:19 +03:00

49 lines
1.6 KiB
Smarty

{{- define "postgres.workload" -}}
{{/* Postgres Database */}}
workload:
{{- include "ix.v1.common.app.postgres" (dict "secretName" "postgres-creds" "resources" .Values.resources) | nindent 2 }}
{{/* Service */}}
service:
postgres:
enabled: true
type: ClusterIP
targetSelector: postgres
ports:
postgres:
enabled: true
primary: true
port: 5432
targetSelector: postgres
{{/* Persistence */}}
persistence:
postgresdata:
enabled: true
type: {{ .Values.vaultwardenStorage.pgData.type }}
datasetName: {{ .Values.vaultwardenStorage.pgData.datasetName | default "" }}
hostPath: {{ .Values.vaultwardenStorage.pgData.hostPath | default "" }}
targetSelector:
# Postgres pod
postgres:
# Postgres container
postgres:
mountPath: /var/lib/postgresql/data
# Permissions container, for postgres, container is named "permissions"
permissions:
mountPath: /mnt/directories/postgres_data
postgresbackup:
enabled: true
type: {{ .Values.vaultwardenStorage.pgBackup.type }}
datasetName: {{ .Values.vaultwardenStorage.pgBackup.datasetName | default "" }}
hostPath: {{ .Values.vaultwardenStorage.pgBackup.hostPath | default "" }}
targetSelector:
# Postgres backup pod
postgresbackup:
# Postgres backup container
postgresbackup:
mountPath: /postgres_backup
# Permissions container, for postgres, container is named "permissions"
permissions:
mountPath: /mnt/directories/postgres_backup
{{- end -}}