rancher-partner-charts/charts/kubecost/cost-analyzer/1.70.000/templates/cost-analyzer-postgres-pv.yaml

23 lines
522 B
YAML
Raw Normal View History

{{- if .Values.remoteWrite -}}
{{- if .Values.remoteWrite.postgres -}}
{{- if .Values.remoteWrite.postgres.enabled -}}
{{- if .Values.remoteWrite.postgres.installLocal -}}
kind: PersistentVolume
apiVersion: v1
metadata:
name: postgres-pv-volume
labels:
type: local
app: postgres
spec:
capacity:
storage: {{ .Values.remoteWrite.postgres.persistentVolume.size }}
accessModes:
- ReadWriteOnce
hostPath:
path: "/mnt/data"
{{- end }}
{{- end }}
{{- end }}
{{- end }}