add checksum annotations (#14626)

Signed-off-by: Taehyun Kim <kgyoo8232@gmail.com>
This commit is contained in:
Taehyun Kim
2019-06-10 01:55:08 -07:00
committed by Kubernetes Prow Robot
parent 761082faa8
commit c2ebb0c779
4 changed files with 13 additions and 4 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
apiVersion: v1
description: Sentry is a cross-platform crash reporting and aggregation platform.
name: sentry
version: 1.5.0
version: 1.5.1
appVersion: 9.1.1
keywords:
- debugging
+4 -1
View File
@@ -11,8 +11,11 @@ spec:
replicas: {{ .Values.cron.replicacount }}
template:
metadata:
{{- if .Values.cron.podAnnotations }}
annotations:
metrics-enabled: {{ .Values.metrics.enabled | quote }}
checksum/configYml: {{ .Values.config.configYml | sha256sum }}
checksum/sentryConfPy: {{ .Values.config.sentryConfPy | sha256sum }}
{{- if .Values.cron.podAnnotations }}
{{ toYaml .Values.cron.podAnnotations | indent 8 }}
{{- end }}
labels:
+4 -1
View File
@@ -11,8 +11,11 @@ spec:
replicas: {{ .Values.web.replicacount }}
template:
metadata:
{{- if .Values.web.podAnnotations }}
annotations:
metrics-enabled: {{ .Values.metrics.enabled | quote }}
checksum/configYml: {{ .Values.config.configYml | sha256sum }}
checksum/sentryConfPy: {{ .Values.config.sentryConfPy | sha256sum }}
{{- if .Values.web.podAnnotations }}
{{ toYaml .Values.web.podAnnotations | indent 8 }}
{{- end }}
labels:
@@ -11,8 +11,11 @@ spec:
replicas: {{ .Values.worker.replicacount }}
template:
metadata:
{{- if .Values.worker.podAnnotations }}
annotations:
metrics-enabled: {{ .Values.metrics.enabled | quote }}
checksum/configYml: {{ .Values.config.configYml | sha256sum }}
checksum/sentryConfPy: {{ .Values.config.sentryConfPy | sha256sum }}
{{- if .Values.worker.podAnnotations }}
{{ toYaml .Values.worker.podAnnotations | indent 8 }}
{{- end }}
labels: