1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {{- define "pgadmin.persistence" -}}
- persistence:
- config:
- enabled: true
- type: {{ .Values.pgadminStorage.config.type }}
- datasetName: {{ .Values.pgadminStorage.config.datasetName | default "" }}
- hostPath: {{ .Values.pgadminStorage.config.hostPath | default "" }}
- targetSelector:
- pgadmin:
- pgadmin:
- mountPath: /var/lib/pgadmin
- 01-permissions:
- mountPath: /mnt/directories/pgadmin
- tmp:
- enabled: true
- type: emptyDir
- targetSelector:
- pgadmin:
- pgadmin:
- mountPath: /tmp
- {{- range $idx, $storage := .Values.pgadminStorage.additionalStorages }}
- {{ printf "pgadmin-%v" (int $idx) }}:
- {{- $size := "" -}}
- {{- if $storage.size -}}
- {{- $size = (printf "%vGi" $storage.size) -}}
- {{- end }}
- enabled: true
- type: {{ $storage.type }}
- datasetName: {{ $storage.datasetName | default "" }}
- hostPath: {{ $storage.hostPath | default "" }}
- server: {{ $storage.server | default "" }}
- share: {{ $storage.share | default "" }}
- domain: {{ $storage.domain | default "" }}
- username: {{ $storage.username | default "" }}
- password: {{ $storage.password | default "" }}
- size: {{ $size }}
- {{- if eq $storage.type "smb-pv-pvc" }}
- mountOptions:
- - key: noperm
- {{- end }}
- targetSelector:
- pgadmin:
- pgadmin:
- mountPath: {{ $storage.mountPath }}
- 01-permissions:
- mountPath: /mnt/directories{{ $storage.mountPath }}
- {{- end }}
- {{- if .Values.pgadminNetwork.certificateID }}
- cert:
- enabled: true
- type: secret
- objectName: pgadmin-cert
- defaultMode: "0600"
- items:
- - key: tls.key
- path: server.key
- - key: tls.crt
- path: server.cert
- targetSelector:
- pgadmin:
- pgadmin:
- mountPath: /certs
- readOnly: true
- scaleCertificate:
- pgadmin-cert:
- enabled: true
- id: {{ .Values.pgadminNetwork.certificateID }}
- {{- end }}
- {{- end -}}
|