diff --git a/Chart.yaml b/Chart.yaml index c6f224f..c359140 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.15.1 +version: 0.15.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/templates/datafeeder/import-deployment.yaml b/templates/datafeeder/import-deployment.yaml index dccd5a5..a7aa278 100644 --- a/templates/datafeeder/import-deployment.yaml +++ b/templates/datafeeder/import-deployment.yaml @@ -53,6 +53,15 @@ spec: port: 80 failureThreshold: 5 periodSeconds: 5 + volumes: + - name: georchestra-datadir + emptyDir: {} + {{- if .Values.georchestra.datadir.git.ssh_secret }} + - name: ssh-secret + secret: + secretName: {{ .Values.georchestra.datadir.git.ssh_secret }} + defaultMode: 0400 + {{- end }} {{- if $webapp.registry_secret }} imagePullSecrets: - name: {{ $webapp.registry_secret }}