Skip to content

Commit 60aaa3d

Browse files
authoredApr 29, 2024··
feat: Add liveness to consumers (#1240)
1 parent a6d7c15 commit 60aaa3d

File tree

32 files changed

+519
-1
lines changed

32 files changed

+519
-1
lines changed
 

‎sentry/templates/deployment-sentry-billing-metrics-consumer.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,19 @@ spec:
9090
- "--max-batch-size"
9191
- "{{ .Values.sentry.billingMetricsConsumer.maxBatchSize }}"
9292
{{- end }}
93+
{{- if .Values.sentry.billingMetricsConsumer.livenessProbe.enabled }}
94+
- "--healthcheck-file-path"
95+
- "/tmp/health.txt"
96+
{{- end }}
97+
{{- if .Values.sentry.billingMetricsConsumer.livenessProbe.enabled }}
98+
livenessProbe:
99+
exec:
100+
command:
101+
- rm
102+
- /tmp/health.txt
103+
initialDelaySeconds: {{ .Values.sentry.billingMetricsConsumer.livenessProbe.initialDelaySeconds }}
104+
periodSeconds: {{ .Values.sentry.billingMetricsConsumer.livenessProbe.periodSeconds }}
105+
{{- end }}
93106
env:
94107
- name: C_FORCE_ROOT
95108
value: "true"

‎sentry/templates/deployment-sentry-generic-metrics-consumer.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,19 @@ spec:
8888
- "--max-batch-size"
8989
- "{{ .Values.sentry.genericMetricsConsumer.maxBatchSize }}"
9090
{{- end }}
91+
{{- if .Values.sentry.genericMetricsConsumer.livenessProbe.enabled }}
92+
- "--healthcheck-file-path"
93+
- "/tmp/health.txt"
94+
{{- end }}
95+
{{- if .Values.sentry.genericMetricsConsumer.livenessProbe.enabled }}
96+
livenessProbe:
97+
exec:
98+
command:
99+
- rm
100+
- /tmp/health.txt
101+
initialDelaySeconds: {{ .Values.sentry.genericMetricsConsumer.livenessProbe.initialDelaySeconds }}
102+
periodSeconds: {{ .Values.sentry.genericMetricsConsumer.livenessProbe.periodSeconds }}
103+
{{- end }}
91104
env:
92105
- name: C_FORCE_ROOT
93106
value: "true"

‎sentry/templates/deployment-sentry-ingest-consumer-attachments.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,19 @@ spec:
9090
- "--max-batch-size"
9191
- "{{ .Values.sentry.ingestConsumer.maxBatchSize }}"
9292
{{- end }}
93+
{{- if .Values.sentry.ingestConsumer.livenessProbe.enabled }}
94+
- "--healthcheck-file-path"
95+
- "/tmp/health.txt"
96+
{{- end }}
97+
{{- if .Values.sentry.ingestConsumer.livenessProbe.enabled }}
98+
livenessProbe:
99+
exec:
100+
command:
101+
- rm
102+
- /tmp/health.txt
103+
initialDelaySeconds: {{ .Values.sentry.ingestConsumer.livenessProbe.initialDelaySeconds }}
104+
periodSeconds: {{ .Values.sentry.ingestConsumer.livenessProbe.periodSeconds }}
105+
{{- end }}
93106
env:
94107
- name: C_FORCE_ROOT
95108
value: "true"

‎sentry/templates/deployment-sentry-ingest-consumer-events.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,19 @@ spec:
9393
{{- if .Values.sentry.ingestConsumer.noStrictOffsetReset }}
9494
- "--no-strict-offset-reset"
9595
{{- end }}
96+
{{- if .Values.sentry.ingestConsumer.livenessProbe.enabled }}
97+
- "--healthcheck-file-path"
98+
- "/tmp/health.txt"
99+
{{- end }}
100+
{{- if .Values.sentry.ingestConsumer.livenessProbe.enabled }}
101+
livenessProbe:
102+
exec:
103+
command:
104+
- rm
105+
- /tmp/health.txt
106+
initialDelaySeconds: {{ .Values.sentry.ingestConsumer.livenessProbe.initialDelaySeconds }}
107+
periodSeconds: {{ .Values.sentry.ingestConsumer.livenessProbe.periodSeconds }}
108+
{{- end }}
96109
env:
97110
- name: C_FORCE_ROOT
98111
value: "true"

‎sentry/templates/deployment-sentry-ingest-consumer-transactions.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,19 @@ spec:
9393
{{- if .Values.sentry.ingestConsumer.noStrictOffsetReset }}
9494
- "--no-strict-offset-reset"
9595
{{- end }}
96+
{{- if .Values.sentry.ingestConsumer.livenessProbe.enabled }}
97+
- "--healthcheck-file-path"
98+
- "/tmp/health.txt"
99+
{{- end }}
100+
{{- if .Values.sentry.ingestConsumer.livenessProbe.enabled }}
101+
livenessProbe:
102+
exec:
103+
command:
104+
- rm
105+
- /tmp/health.txt
106+
initialDelaySeconds: {{ .Values.sentry.ingestConsumer.livenessProbe.initialDelaySeconds }}
107+
periodSeconds: {{ .Values.sentry.ingestConsumer.livenessProbe.periodSeconds }}
108+
{{- end }}
96109
env:
97110
- name: C_FORCE_ROOT
98111
value: "true"

‎sentry/templates/deployment-sentry-ingest-monitors.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,19 @@ spec:
8282
- "ingest-monitors"
8383
- "--consumer-group"
8484
- "ingest-monitors"
85+
{{- if .Values.sentry.ingestMonitors.livenessProbe.enabled }}
86+
- "--healthcheck-file-path"
87+
- "/tmp/health.txt"
88+
{{- end }}
89+
{{- if .Values.sentry.ingestMonitors.livenessProbe.enabled }}
90+
livenessProbe:
91+
exec:
92+
command:
93+
- rm
94+
- /tmp/health.txt
95+
initialDelaySeconds: {{ .Values.sentry.ingestMonitors.livenessProbe.initialDelaySeconds }}
96+
periodSeconds: {{ .Values.sentry.ingestMonitors.livenessProbe.periodSeconds }}
97+
{{- end }}
8598
env:
8699
- name: C_FORCE_ROOT
87100
value: "true"

‎sentry/templates/deployment-sentry-ingest-occurrences.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,19 @@ spec:
8282
- "ingest-occurrences"
8383
- "--consumer-group"
8484
- "ingest-occurrences"
85+
{{- if .Values.sentry.ingestOccurrences.livenessProbe.enabled }}
86+
- "--healthcheck-file-path"
87+
- "/tmp/health.txt"
88+
{{- end }}
89+
{{- if .Values.sentry.ingestOccurrences.livenessProbe.enabled }}
90+
livenessProbe:
91+
exec:
92+
command:
93+
- rm
94+
- /tmp/health.txt
95+
initialDelaySeconds: {{ .Values.sentry.ingestOccurrences.livenessProbe.initialDelaySeconds }}
96+
periodSeconds: {{ .Values.sentry.ingestOccurrences.livenessProbe.periodSeconds }}
97+
{{- end }}
8598
env:
8699
- name: C_FORCE_ROOT
87100
value: "true"

‎sentry/templates/deployment-sentry-ingest-profiles.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,19 @@ spec:
8282
- "ingest-profiles"
8383
- "--consumer-group"
8484
- "ingest-profiles"
85+
{{- if .Values.sentry.ingestProfiles.livenessProbe.enabled }}
86+
- "--healthcheck-file-path"
87+
- "/tmp/health.txt"
88+
{{- end }}
89+
{{- if .Values.sentry.ingestProfiles.livenessProbe.enabled }}
90+
livenessProbe:
91+
exec:
92+
command:
93+
- rm
94+
- /tmp/health.txt
95+
initialDelaySeconds: {{ .Values.sentry.ingestProfiles.livenessProbe.initialDelaySeconds }}
96+
periodSeconds: {{ .Values.sentry.ingestProfiles.livenessProbe.periodSeconds }}
97+
{{- end }}
8598
env:
8699
- name: C_FORCE_ROOT
87100
value: "true"

‎sentry/templates/deployment-sentry-ingest-replay-recordings.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,19 @@ spec:
8282
- "ingest-replay-recordings"
8383
- "--consumer-group"
8484
- "ingest-replay-recordings"
85+
{{- if .Values.sentry.ingestReplayRecordings.livenessProbe.enabled }}
86+
- "--healthcheck-file-path"
87+
- "/tmp/health.txt"
88+
{{- end }}
89+
{{- if .Values.sentry.ingestReplayRecordings.livenessProbe.enabled }}
90+
livenessProbe:
91+
exec:
92+
command:
93+
- rm
94+
- /tmp/health.txt
95+
initialDelaySeconds: {{ .Values.sentry.ingestReplayRecordings.livenessProbe.initialDelaySeconds }}
96+
periodSeconds: {{ .Values.sentry.ingestReplayRecordings.livenessProbe.periodSeconds }}
97+
{{- end }}
8598
env:
8699
- name: C_FORCE_ROOT
87100
value: "true"

‎sentry/templates/deployment-sentry-metrics-consumer.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,19 @@ spec:
8888
- "--max-batch-size"
8989
- "{{ .Values.sentry.metricsConsumer.maxBatchSize }}"
9090
{{- end }}
91+
{{- if .Values.sentry.metricsConsumer.livenessProbe.enabled }}
92+
- "--healthcheck-file-path"
93+
- "/tmp/health.txt"
94+
{{- end }}
95+
{{- if .Values.sentry.metricsConsumer.livenessProbe.enabled }}
96+
livenessProbe:
97+
exec:
98+
command:
99+
- rm
100+
- /tmp/health.txt
101+
initialDelaySeconds: {{ .Values.sentry.metricsConsumer.livenessProbe.initialDelaySeconds }}
102+
periodSeconds: {{ .Values.sentry.metricsConsumer.livenessProbe.periodSeconds }}
103+
{{- end }}
91104
env:
92105
- name: C_FORCE_ROOT
93106
value: "true"

‎sentry/templates/deployment-sentry-post-process-forwarder-errors.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,19 @@ spec:
8282
- "post-process-forwarder"
8383
- "--synchronize-commit-log-topic=snuba-commit-log"
8484
- "--synchronize-commit-group=snuba-consumers"
85+
{{- if .Values.sentry.postProcessForwardErrors.livenessProbe.enabled }}
86+
- "--healthcheck-file-path"
87+
- "/tmp/health.txt"
88+
{{- end }}
89+
{{- if .Values.sentry.postProcessForwardErrors.livenessProbe.enabled }}
90+
livenessProbe:
91+
exec:
92+
command:
93+
- rm
94+
- /tmp/health.txt
95+
initialDelaySeconds: {{ .Values.sentry.postProcessForwardErrors.livenessProbe.initialDelaySeconds }}
96+
periodSeconds: {{ .Values.sentry.postProcessForwardErrors.livenessProbe.periodSeconds }}
97+
{{- end }}
8598
env:
8699
{{ include "sentry.env" . | indent 8 }}
87100
{{- if .Values.sentry.postProcessForwardErrors.env }}

‎sentry/templates/deployment-sentry-post-process-forwarder-issue-platform.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,19 @@ spec:
8383
- "--synchronize-commit-log-topic=snuba-generic-events-commit-log"
8484
- "--synchronize-commit-group"
8585
- "generic_events_group"
86+
{{- if .Values.sentry.postProcessForwardIssuePlatform.livenessProbe.enabled }}
87+
- "--healthcheck-file-path"
88+
- "/tmp/health.txt"
89+
{{- end }}
90+
{{- if .Values.sentry.postProcessForwardIssuePlatform.livenessProbe.enabled }}
91+
livenessProbe:
92+
exec:
93+
command:
94+
- rm
95+
- /tmp/health.txt
96+
initialDelaySeconds: {{ .Values.sentry.postProcessForwardIssuePlatform.livenessProbe.initialDelaySeconds }}
97+
periodSeconds: {{ .Values.sentry.postProcessForwardIssuePlatform.livenessProbe.periodSeconds }}
98+
{{- end }}
8699
env:
87100
{{ include "sentry.env" . | indent 8 }}
88101
{{- if .Values.sentry.postProcessForwardIssuePlatform.env }}

‎sentry/templates/deployment-sentry-post-process-forwarder-transactions.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,19 @@ spec:
8686
{{- if .Values.sentry.postProcessForwardTransactions.noStrictOffsetReset }}
8787
- "--no-strict-offset-reset"
8888
{{- end }}
89+
{{- if .Values.sentry.postProcessForwardTransactions.livenessProbe.enabled }}
90+
- "--healthcheck-file-path"
91+
- "/tmp/health.txt"
92+
{{- end }}
93+
{{- if .Values.sentry.postProcessForwardTransactions.livenessProbe.enabled }}
94+
livenessProbe:
95+
exec:
96+
command:
97+
- rm
98+
- /tmp/health.txt
99+
initialDelaySeconds: {{ .Values.sentry.postProcessForwardTransactions.livenessProbe.initialDelaySeconds }}
100+
periodSeconds: {{ .Values.sentry.postProcessForwardTransactions.livenessProbe.periodSeconds }}
101+
{{- end }}
89102
env:
90103
{{ include "sentry.env" . | indent 8 }}
91104
{{- if .Values.sentry.postProcessForwardTransactions.env }}

‎sentry/templates/deployment-sentry-subscription-consumer-events.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,19 @@ spec:
7373
- "events-subscription-results"
7474
- "--consumer-group"
7575
- "query-subscription-consumer"
76+
{{- if .Values.sentry.subscriptionConsumerEvents.livenessProbe.enabled }}
77+
- "--healthcheck-file-path"
78+
- "/tmp/health.txt"
79+
{{- end }}
80+
{{- if .Values.sentry.subscriptionConsumerEvents.livenessProbe.enabled }}
81+
livenessProbe:
82+
exec:
83+
command:
84+
- rm
85+
- /tmp/health.txt
86+
initialDelaySeconds: {{ .Values.sentry.subscriptionConsumerEvents.livenessProbe.initialDelaySeconds }}
87+
periodSeconds: {{ .Values.sentry.subscriptionConsumerEvents.livenessProbe.periodSeconds }}
88+
{{- end }}
7689
env:
7790
{{ include "sentry.env" . | indent 8 }}
7891
{{- if .Values.sentry.subscriptionConsumerEvents.env }}

‎sentry/templates/deployment-sentry-subscription-consumer-generic-metrics.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,19 @@ spec:
8888
- "--max-batch-size"
8989
- "{{ .Values.sentry.subscriptionConsumerGenericMetrics.maxBatchSize }}"
9090
{{- end }}
91+
{{- if .Values.sentry.subscriptionConsumerGenericMetrics.livenessProbe.enabled }}
92+
- "--healthcheck-file-path"
93+
- "/tmp/health.txt"
94+
{{- end }}
95+
{{- if .Values.sentry.subscriptionConsumerGenericMetrics.livenessProbe.enabled }}
96+
livenessProbe:
97+
exec:
98+
command:
99+
- rm
100+
- /tmp/health.txt
101+
initialDelaySeconds: {{ .Values.sentry.subscriptionConsumerGenericMetrics.livenessProbe.initialDelaySeconds }}
102+
periodSeconds: {{ .Values.sentry.subscriptionConsumerGenericMetrics.livenessProbe.periodSeconds }}
103+
{{- end }}
91104
env:
92105
- name: C_FORCE_ROOT
93106
value: "true"

‎sentry/templates/deployment-sentry-subscription-consumer-metrics.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,19 @@ spec:
8888
- "--max-batch-size"
8989
- "{{ .Values.sentry.subscriptionConsumerMetrics.maxBatchSize }}"
9090
{{- end }}
91+
{{- if .Values.sentry.subscriptionConsumerMetrics.livenessProbe.enabled }}
92+
- "--healthcheck-file-path"
93+
- "/tmp/health.txt"
94+
{{- end }}
95+
{{- if .Values.sentry.subscriptionConsumerMetrics.livenessProbe.enabled }}
96+
livenessProbe:
97+
exec:
98+
command:
99+
- rm
100+
- /tmp/health.txt
101+
initialDelaySeconds: {{ .Values.sentry.subscriptionConsumerMetrics.livenessProbe.initialDelaySeconds }}
102+
periodSeconds: {{ .Values.sentry.subscriptionConsumerMetrics.livenessProbe.periodSeconds }}
103+
{{- end }}
91104
env:
92105
- name: C_FORCE_ROOT
93106
value: "true"

‎sentry/templates/deployment-sentry-subscription-consumer-transactions.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,19 @@ spec:
7373
- "transactions-subscription-results"
7474
- "--consumer-group"
7575
- "query-subscription-consumer"
76+
{{- if .Values.sentry.subscriptionConsumerTransactions.livenessProbe.enabled }}
77+
- "--healthcheck-file-path"
78+
- "/tmp/health.txt"
79+
{{- end }}
80+
{{- if .Values.sentry.subscriptionConsumerTransactions.livenessProbe.enabled }}
81+
livenessProbe:
82+
exec:
83+
command:
84+
- rm
85+
- /tmp/health.txt
86+
initialDelaySeconds: {{ .Values.sentry.subscriptionConsumerTransactions.livenessProbe.initialDelaySeconds }}
87+
periodSeconds: {{ .Values.sentry.subscriptionConsumerTransactions.livenessProbe.periodSeconds }}
88+
{{- end }}
7689
env:
7790
{{ include "sentry.env" . | indent 8 }}
7891
{{- if .Values.sentry.subscriptionConsumerTransactions.env }}

‎sentry/templates/deployment-snuba-consumer.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,19 @@ spec:
112112
{{- if .Values.snuba.consumer.noStrictOffsetReset }}
113113
- "--no-strict-offset-reset"
114114
{{- end }}
115+
{{- if .Values.snuba.consumer.livenessProbe.enabled }}
116+
- "--health-check-file"
117+
- "/tmp/health.txt"
118+
{{- end }}
119+
{{- if .Values.snuba.consumer.livenessProbe.enabled }}
120+
livenessProbe:
121+
exec:
122+
command:
123+
- rm
124+
- /tmp/health.txt
125+
initialDelaySeconds: {{ .Values.snuba.consumer.livenessProbe.initialDelaySeconds }}
126+
periodSeconds: {{ .Values.snuba.consumer.livenessProbe.periodSeconds }}
127+
{{- end }}
115128
ports:
116129
- containerPort: {{ template "snuba.port" }}
117130
env:

‎sentry/templates/deployment-snuba-generic-metrics-counters-consumer.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,19 @@ spec:
114114
{{- if .Values.snuba.genericMetricsCountersConsumer.noStrictOffsetReset }}
115115
- "--no-strict-offset-reset"
116116
{{- end }}
117+
{{- if .Values.snuba.genericMetricsCountersConsumer.livenessProbe.enabled }}
118+
- "--health-check-file"
119+
- "/tmp/health.txt"
120+
{{- end }}
121+
{{- if .Values.snuba.genericMetricsCountersConsumer.livenessProbe.enabled }}
122+
livenessProbe:
123+
exec:
124+
command:
125+
- rm
126+
- /tmp/health.txt
127+
initialDelaySeconds: {{ .Values.snuba.genericMetricsCountersConsumer.livenessProbe.initialDelaySeconds }}
128+
periodSeconds: {{ .Values.snuba.genericMetricsCountersConsumer.livenessProbe.periodSeconds }}
129+
{{- end }}
117130
ports:
118131
- containerPort: {{ template "snuba.port" }}
119132
env:

‎sentry/templates/deployment-snuba-generic-metrics-distributions-consumer.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,19 @@ spec:
114114
{{- if .Values.snuba.genericMetricsDistributionConsumer.noStrictOffsetReset }}
115115
- "--no-strict-offset-reset"
116116
{{- end }}
117+
{{- if .Values.snuba.genericMetricsDistributionConsumer.livenessProbe.enabled }}
118+
- "--health-check-file"
119+
- "/tmp/health.txt"
120+
{{- end }}
121+
{{- if .Values.snuba.genericMetricsDistributionConsumer.livenessProbe.enabled }}
122+
livenessProbe:
123+
exec:
124+
command:
125+
- rm
126+
- /tmp/health.txt
127+
initialDelaySeconds: {{ .Values.snuba.genericMetricsDistributionConsumer.livenessProbe.initialDelaySeconds }}
128+
periodSeconds: {{ .Values.snuba.genericMetricsDistributionConsumer.livenessProbe.periodSeconds }}
129+
{{- end }}
117130
ports:
118131
- containerPort: {{ template "snuba.port" }}
119132
env:

0 commit comments

Comments
 (0)
Please sign in to comment.