diff --git a/charts/blockscout-stack/Chart.yaml b/charts/blockscout-stack/Chart.yaml index 7913ee7..0e2230e 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: 0.1.0 +version: 0.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 diff --git a/charts/blockscout-stack/templates/stats-deployment.yaml b/charts/blockscout-stack/templates/stats-deployment.yaml index cce03ca..9150eae 100644 --- a/charts/blockscout-stack/templates/stats-deployment.yaml +++ b/charts/blockscout-stack/templates/stats-deployment.yaml @@ -13,9 +13,9 @@ spec: app: {{ .Release.Name }}-stats template: metadata: - {{- with .Values.podAnnotations }} + {{- if eq .Values.stats.image.pullPolicy "Always" }} annotations: - {{- toYaml . | nindent 8 }} + releaseTime: {{ dateInZone "2006-01-02 15:04:05Z" (now) "UTC"| quote }} {{- end }} labels: app: {{ .Release.Name }}-stats diff --git a/charts/blockscout-stack/values.yaml b/charts/blockscout-stack/values.yaml index 7dcf301..8c6a5aa 100644 --- a/charts/blockscout-stack/values.yaml +++ b/charts/blockscout-stack/values.yaml @@ -79,7 +79,7 @@ frontend: image: repository: ghcr.io/blockscout/frontend tag: latest - imagePullPolicy: IfNotPresent + pullPolicy: IfNotPresent replicaCount: 2