12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {{- define "pgadmin.persistence" -}}
- persistence:
- config:
- enabled: true
- {{- include "pgadmin.storage.ci.migration" (dict "storage" .Values.pgadminStorage.config) }}
- {{- include "ix.v1.common.app.storageOptions" (dict "storage" .Values.pgadminStorage.config) | nindent 4 }}
- targetSelector:
- pgadmin:
- pgadmin:
- mountPath: /var/lib/pgadmin
- {{- if and (eq .Values.pgadminStorage.config.type "ixVolume")
- (not (.Values.pgadminStorage.config.ixVolumeConfig | default dict).aclEnable) }}
- 01-permissions:
- mountPath: /mnt/directories/pgadmin
- {{- end }}
- tmp:
- enabled: true
- type: emptyDir
- targetSelector:
- pgadmin:
- pgadmin:
- mountPath: /tmp
- {{- range $idx, $storage := .Values.pgadminStorage.additionalStorages }}
- {{ printf "pgadmin-%v" (int $idx) }}:
- enabled: true
- {{- include "pgadmin.storage.ci.migration" (dict "storage" $storage) }}
- {{- include "ix.v1.common.app.storageOptions" (dict "storage" $storage) | nindent 4 }}
- targetSelector:
- pgadmin:
- pgadmin:
- mountPath: {{ $storage.mountPath }}
- {{- if and (eq $storage.type "ixVolume") (not ($storage.ixVolumeConfig | default dict).aclEnable) }}
- 01-permissions:
- mountPath: /mnt/directories{{ $storage.mountPath }}
- {{- end }}
- {{- 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 -}}
- {{/* TODO: Remove on the next version bump, eg 1.2.0+ */}}
- {{- define "pgadmin.storage.ci.migration" -}}
- {{- $storage := .storage -}}
- {{- if $storage.hostPath -}}
- {{- $_ := set $storage "hostPathConfig" dict -}}
- {{- $_ := set $storage.hostPathConfig "hostPath" $storage.hostPath -}}
- {{- end -}}
- {{- end -}}
|