Skip to content

Commit

Permalink
Adding dependency for blockscout-stack for secret values change
Browse files Browse the repository at this point in the history
  • Loading branch information
nzenchik committed Aug 23, 2023
1 parent 8dbd52a commit 3d6851c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/blockscout-stack/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ 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.0.2
version: 1.0.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
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "5.2.1"
appVersion: "5.2.2"
3 changes: 2 additions & 1 deletion charts/blockscout-stack/templates/blockscout-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ spec:
app: {{ .Release.Name }}-blockscout
template:
metadata:
{{- with .Values.podAnnotations }}
annotations:
checksum/config: {{ include (print $.Template.BasePath "/blockscout-secret.yaml") . | sha256sum }}
{{- with .Values.podAnnotations }}
{{- toYaml . | nindent 8 }}
{{- end }}
labels:
Expand Down
3 changes: 2 additions & 1 deletion charts/blockscout-stack/templates/frontend-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ spec:
app: {{ .Release.Name }}-frontend
template:
metadata:
{{- if eq .Values.frontend.image.pullPolicy "Always" }}
annotations:
checksum/config: {{ include (print $.Template.BasePath "/frontend-secret.yaml") . | sha256sum }}
{{- if eq .Values.frontend.image.pullPolicy "Always" }}
releaseTime: {{ dateInZone "2006-01-02 15:04:05Z" (now) "UTC"| quote }}
{{- end }}
labels:
Expand Down
3 changes: 2 additions & 1 deletion charts/blockscout-stack/templates/stats-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ spec:
app: {{ .Release.Name }}-stats
template:
metadata:
{{- if eq .Values.stats.image.pullPolicy "Always" }}
annotations:
checksum/config: {{ include (print $.Template.BasePath "/stats-secret.yaml") . | sha256sum }}
{{- if eq .Values.stats.image.pullPolicy "Always" }}
releaseTime: {{ dateInZone "2006-01-02 15:04:05Z" (now) "UTC"| quote }}
{{- end }}
labels:
Expand Down

0 comments on commit 3d6851c

Please sign in to comment.