Преглед изворни кода

Use emptydir volumes for nextcloud chart test

Waqar Ahmed пре 5 година
родитељ
комит
23892730f3
2 измењених фајлова са 10 додато и 0 уклоњено
  1. 8 0
      test/nextcloud/2.3.2/templates/_helpers.tpl
  2. 2 0
      test/nextcloud/2.3.2/test_values.yaml

+ 8 - 0
test/nextcloud/2.3.2/templates/_helpers.tpl

@@ -78,17 +78,25 @@ Retrieve host path defined in volume
 Retrieve backup postgresql host path defined in volume
 */}}
 {{- define "configuredBackupPostgresHostPath" -}}
+{{- if .Values.emptyDirVolumes -}}
+{{- printf "" -}}
+{{- else -}}
 {{- $volDict := dict "datasetName" $.Values.postgresBackupVolume.datasetName "ixVolumes" $.Values.ixVolumes -}}
 {{- include "retrieveHostPathFromiXVolume" $volDict -}}
 {{- end -}}
+{{- end -}}
 
 {{/*
 Retrieve postgresql data host path defined in volume
 */}}
 {{- define "configuredPostgresHostPath" -}}
+{{- if .Values.emptyDirVolumes -}}
+{{- printf "" -}}
+{{- else -}}
 {{- $volDict := dict "datasetName" $.Values.postgresDataVolume.datasetName "ixVolumes" $.Values.ixVolumes -}}
 {{- include "retrieveHostPathFromiXVolume" $volDict -}}
 {{- end -}}
+{{- end -}}
 
 {{/*
 Selector labels

+ 2 - 0
test/nextcloud/2.3.2/test_values.yaml

@@ -23,3 +23,5 @@ postgresql:
 
 service:
   nodePort: 31000
+
+emptyDirVolumes: true