mirror of
https://github.com/truenas/charts.git
synced 2026-04-13 17:52:13 +08:00
* bump version and common * update values * update templtes * update ui * add migration * missed one * keep version on test train in order to test migration in storage section * fix migration value * update appversion to reflect the actual version
21 lines
840 B
Smarty
21 lines
840 B
Smarty
{{- define "postgres.workload" -}}
|
|
workload:
|
|
{{- include "ix.v1.common.app.postgres" (dict "secretName" "postgres-creds"
|
|
"resources" .Values.resources
|
|
"ixChartContext" .Values.ixChartContext) | nindent 2 }}
|
|
|
|
{{/* Service */}}
|
|
service:
|
|
{{- include "ix.v1.common.app.postgresService" $ | nindent 2 }}
|
|
|
|
{{- include "minio.storage.ci.migration" (dict "storage" .Values.minioLogging.logsearch.pgData) }}
|
|
{{- include "minio.storage.ci.migration" (dict "storage" .Values.minioLogging.logsearch.pgBackup) }}
|
|
|
|
{{/* Persistence */}}
|
|
persistence:
|
|
{{- include "ix.v1.common.app.postgresPersistence"
|
|
(dict "pgData" .Values.minioLogging.logsearch.pgData
|
|
"pgBackup" .Values.minioLogging.logsearch.pgBackup
|
|
) | nindent 2 }}
|
|
{{- end -}}
|