diff --git a/charts/blockscout-stack/CHANGELOG.md b/charts/blockscout-stack/CHANGELOG.md index db45fb1..63adc94 100644 --- a/charts/blockscout-stack/CHANGELOG.md +++ b/charts/blockscout-stack/CHANGELOG.md @@ -1,5 +1,11 @@ # ChangeLog +## 1.4.1 + +### Fixes + +- Fixing stats volume attachment + ## 1.4.0 ### Feature diff --git a/charts/blockscout-stack/Chart.yaml b/charts/blockscout-stack/Chart.yaml index ba83f3f..c3eedd9 100644 --- a/charts/blockscout-stack/Chart.yaml +++ b/charts/blockscout-stack/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: 1.4.0 +version: 1.4.1 # 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/charts/blockscout-stack/templates/frontend-deployment.yaml b/charts/blockscout-stack/templates/frontend-deployment.yaml index cae685b..8ca465d 100644 --- a/charts/blockscout-stack/templates/frontend-deployment.yaml +++ b/charts/blockscout-stack/templates/frontend-deployment.yaml @@ -83,14 +83,6 @@ spec: envFrom: - secretRef: name: {{ include "blockscout-stack.fullname" . }}-frontend-env - {{- if .Values.stats.files.enabled }} - volumeMounts: - {{- range $key, $value := .Values.stats.files.list }} - - mountPath: {{ $.Values.stats.files.mountPath }}/{{ $key }} - name: stats-cm - subPath: {{ $key }} - {{- end }} - {{- end }} {{- if .Values.frontend.readinessProbe.enabled }} readinessProbe: httpGet: diff --git a/charts/blockscout-stack/templates/stats-deployment.yaml b/charts/blockscout-stack/templates/stats-deployment.yaml index 1686c01..318e0a8 100644 --- a/charts/blockscout-stack/templates/stats-deployment.yaml +++ b/charts/blockscout-stack/templates/stats-deployment.yaml @@ -56,6 +56,14 @@ spec: envFrom: - secretRef: name: {{ include "blockscout-stack.fullname" . }}-stats-env + {{- if .Values.stats.files.enabled }} + volumeMounts: + {{- range $key, $value := .Values.stats.files.list }} + - mountPath: {{ $.Values.stats.files.mountPath }}/{{ $key }} + name: stats-cm + subPath: {{ $key }} + {{- end }} + {{- end }} {{- if .Values.stats.readinessProbe.enabled }} readinessProbe: httpGet: