1234567891011 |
- {{/*
- Retrieve host path from ix volumes based on dataset name
- */}}
- {{- define "common.storage.retrieveHostPathFromiXVolume" -}}
- {{- range $index, $hostPathConfiguration := $.ixVolumes }}
- {{- $dsName := base $hostPathConfiguration.hostPath -}}
- {{- if eq $.datasetName $dsName -}}
- {{- $hostPathConfiguration.hostPath -}}
- {{- end -}}
- {{- end }}
- {{- end -}}
|