diff options
author | kaiyou <dev@kaiyou.fr> | 2022-11-06 21:54:09 +0100 |
---|---|---|
committer | kaiyou <dev@kaiyou.fr> | 2022-12-25 13:30:14 +0100 |
commit | e9b0068079923910819e73c76d24c58de528eeb1 (patch) | |
tree | b0adfe7212e0b9e381ea4f08cf694463d40c73ba /script/helm/garage/templates | |
parent | 49a138b670cf820a69b76ed8de1fa3a10d9070ff (diff) | |
download | garage-e9b0068079923910819e73c76d24c58de528eeb1.tar.gz garage-e9b0068079923910819e73c76d24c58de528eeb1.zip |
Set hostPath type for volumes
Diffstat (limited to 'script/helm/garage/templates')
-rw-r--r-- | script/helm/garage/templates/workload.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/script/helm/garage/templates/workload.yaml b/script/helm/garage/templates/workload.yaml index 26ff153f..057a9858 100644 --- a/script/helm/garage/templates/workload.yaml +++ b/script/helm/garage/templates/workload.yaml @@ -86,9 +86,11 @@ spec: - name: meta hostPath: path: {{ .Values.persistence.meta.hostPath }} + type: DirectoryOrCreate - name: data hostPath: path: {{ .Values.persistence.data.hostPath }} + type: DirectoryOrCreate {{- end }} {{- else }} - name: meta |