Skip to content

Commit

Permalink
[blockscout-ens] Added configmap checksum dependency to deployment an…
Browse files Browse the repository at this point in the history
…notations
  • Loading branch information
nzenchik committed Nov 13, 2024
1 parent f7b25c7 commit c36f16d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions charts/blockscout-ens/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# ChangeLog

## 1.1.1

### Fixes

- Added configmap checksum dependency to deployment annotations

## 1.0.3

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion charts/blockscout-ens/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.1.0
version: 1.1.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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ spec:
template:
metadata:
annotations:
checksum/config: {{ include (print $.Template.BasePath "/blockscout-ens-secret.yaml") . | sha256sum }}
checksum/secret: {{ include (print $.Template.BasePath "/blockscout-ens-secret.yaml") . | sha256sum }}
checksum/config: {{ include (print $.Template.BasePath "/blockscout-ens-configmap.yaml") . | sha256sum }}
{{- if eq .Values.bens.image.pullPolicy "Always" }}
releaseTime: {{ dateInZone "2006-01-02 15:04:05Z" (now) "UTC"| quote }}
{{- end }}
{{- with .Values.podAnnotations }}
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down

0 comments on commit c36f16d

Please sign in to comment.