|
@@ -5,44 +5,12 @@ workload:
|
|
|
|
|
|
{{/* Service */}}
|
|
|
service:
|
|
|
- postgres:
|
|
|
- enabled: true
|
|
|
- type: ClusterIP
|
|
|
- targetSelector: postgres
|
|
|
- ports:
|
|
|
- postgres:
|
|
|
- enabled: true
|
|
|
- primary: true
|
|
|
- port: 5432
|
|
|
- targetSelector: postgres
|
|
|
+ {{- include "ix.v1.common.app.postgresService" $ | nindent 2 }}
|
|
|
+
|
|
|
{{/* 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
|
|
|
+ {{- include "ix.v1.common.app.postgresPersistence"
|
|
|
+ (dict "pgData" .Values.vaultwardenStorage.pgData
|
|
|
+ "pgBackup" .Values.vaultwardenStorage.pgBackup
|
|
|
+ ) | nindent 2 }}
|
|
|
{{- end -}}
|