Skip to content

Commit

Permalink
feat: kafka fix db check
Browse files Browse the repository at this point in the history
  • Loading branch information
Mokto committed Apr 9, 2024
1 parent d7e2de4 commit a148a57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sentry/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: sentry
description: A Helm chart for Kubernetes
type: application
version: 22.0.1
version: 22.0.2
appVersion: 24.2.0
dependencies:
- name: memcached
Expand Down
2 changes: 1 addition & 1 deletion sentry/templates/hooks/sentry-db-check.job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ spec:
while [ $KAFKA_STATUS -eq 0 ]; do
KAFKA_STATUS=1
{{- if .Values.kafka.enabled }}
KAFKA_REPLICAS={{ .Values.kafka.replicaCount }}
KAFKA_REPLICAS={{ .Values.kafka.controller.replicaCount | default 3 }}
{{- if .Values.kafka.zookeeper.enabled }}
echo "Kafka Zookeeper is enabled, checking if Zookeeper is up"
ZOOKEEPER_STATUS=0
Expand Down

0 comments on commit a148a57

Please sign in to comment.