mirror of
https://github.com/truenas/charts.git
synced 2026-04-05 19:58:21 +08:00
* use pvc in ci * jellyfin - migrate storage section * bump and ci migration * emptydir mig ci * make emptyDir size int * regen common * cleanup * not an f string * update label
95 lines
2.8 KiB
Smarty
95 lines
2.8 KiB
Smarty
{{/* This is a shim generating yaml that will be passed
|
|
to the actual templates later on the process.
|
|
For that reason the validation is minimal as the
|
|
actual templates will do the validation. */}}
|
|
{{/* Call this template:
|
|
{{ include "ix.v1.common.app.storageOptions" (dict "storage" $storage) }}
|
|
*/}}
|
|
{{- define "ix.v1.common.app.storageOptions" -}}
|
|
{{- $storage := .storage -}}
|
|
|
|
{{- $size := "" -}}
|
|
{{- $hostPath := "" -}}
|
|
{{- $datasetName := "" -}}
|
|
{{- $readOnly := false -}}
|
|
{{- $server := "" -}}
|
|
{{- $share := "" -}}
|
|
{{- $domain := "" -}}
|
|
{{- $username := "" -}}
|
|
{{- $password := "" -}}
|
|
{{- $medium := "" -}}
|
|
|
|
{{- if $storage.readOnly -}}
|
|
{{- $readOnly = true -}}
|
|
{{- end -}}
|
|
|
|
{{/* hostPath */}}
|
|
{{- if eq $storage.type "hostPath" -}}
|
|
{{- if not $storage.hostPathConfig -}}
|
|
{{- fail (printf "Storage Shim - Expected non-empty [hostPathConfig]") -}}
|
|
{{- end -}}
|
|
|
|
{{- if $storage.hostPathConfig.aclEnable -}}
|
|
{{- $hostPath = $storage.hostPathConfig.acl.path -}}
|
|
{{- else -}}
|
|
{{- $hostPath = $storage.hostPathConfig.hostPath -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/* ixVolume */}}
|
|
{{- if eq $storage.type "ixVolume" -}}
|
|
{{- if not $storage.ixVolumeConfig -}}
|
|
{{- fail (printf "Storage Shim - Expected non-empty [ixVolumeConfig]") -}}
|
|
{{- end -}}
|
|
|
|
{{- $datasetName = $storage.ixVolumeConfig.datasetName -}}
|
|
{{- end -}}
|
|
|
|
{{/* SMB Share */}}
|
|
{{- if eq $storage.type "smb-pv-pvc" -}}
|
|
{{- if not $storage.smbConfig -}}
|
|
{{- fail (printf "Storage Shim - Expected non-empty [smbConfig]") -}}
|
|
{{- end -}}
|
|
|
|
{{- $server = $storage.smbConfig.server -}}
|
|
{{- $share = $storage.smbConfig.share -}}
|
|
{{- $domain = $storage.smbConfig.domain -}}
|
|
{{- $username = $storage.smbConfig.username -}}
|
|
{{- $password = $storage.smbConfig.password -}}
|
|
{{- if $storage.smbConfig.size -}}
|
|
{{- $size = (printf "%vGi" $storage.smbConfig.size) -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/* emptyDir */}}
|
|
{{- if eq $storage.type "emptyDir" -}}
|
|
{{- if not $storage.emptyDirConfig -}}
|
|
{{- fail (printf "Storage Shim - Expected non-empty [emptyDirConfig]") -}}
|
|
{{- end -}}
|
|
|
|
{{- if $storage.emptyDirConfig.medium -}}
|
|
{{- $medium = $storage.emptyDirConfig.medium -}}
|
|
{{- end -}}
|
|
|
|
{{- if $storage.emptyDirConfig.size -}}
|
|
{{- $size = (printf "%vGi" $storage.emptyDirConfig.size) -}}
|
|
{{- end -}}
|
|
{{- end }}
|
|
|
|
type: {{ $storage.type }}
|
|
size: {{ $size }}
|
|
hostPath: {{ $hostPath }}
|
|
datasetName: {{ $datasetName }}
|
|
readOnly: {{ $readOnly }}
|
|
medium: {{ $medium }}
|
|
server: {{ $server }}
|
|
share: {{ $share }}
|
|
domain: {{ $domain }}
|
|
username: {{ $username }}
|
|
password: {{ $password }}
|
|
{{- if eq $storage.type "smb-pv-pvc" }}
|
|
mountOptions:
|
|
- key: noperm
|
|
{{- end }}
|
|
{{- end -}}
|