Skip to content

Commit

Permalink
[blockscout-stack] Making stats configmap unique
Browse files Browse the repository at this point in the history
  • Loading branch information
nzenchik committed Feb 28, 2024
1 parent 1e75cce commit 0bd167d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions charts/blockscout-stack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# ChangeLog

## 1.4.3

### Fixes

- Making stats configmap name unique

## 1.4.2

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion charts/blockscout-stack/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2
version: 1.4.3

# 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
Expand Down
2 changes: 1 addition & 1 deletion charts/blockscout-stack/templates/stats-cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: stats-cm
name: {{ include "blockscout-stack.fullname" . }}-stats-cm
labels:
{{- include "blockscout-stack.labels" . | nindent 4 }}
data:
Expand Down
2 changes: 1 addition & 1 deletion charts/blockscout-stack/templates/stats-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ spec:
{{- if .Values.stats.files.enabled }}
volumes:
- configMap:
name: stats-cm
name: {{ include "blockscout-stack.fullname" . }}-stats-cm
defaultMode: 0777
name: stats-cm
{{- end }}
Expand Down

0 comments on commit 0bd167d

Please sign in to comment.