Skip to content

Commit

Permalink
fix: add missing sentinelPort to values
Browse files Browse the repository at this point in the history
  • Loading branch information
nsantacruz committed Mar 27, 2024
1 parent c18510c commit 5177a15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion chart/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ metadata:
labels: {{ include "llm.labels" . | nindent 4 }}
data:
REDIS_URL: {{ .Values.redis.url }}
REDIS_PORT: {{ .Values.redis.port | quote }}
REDIS_PORT: {{ .Values.redis.redisPort | quote }}
SENTINEL_PORT: {{ .Values.redis.sentinelPort | quote }}
CELERY_REDIS_BROKER_DB_NUM: {{ .Values.redis.brokerDBNumber | quote }}
CELERY_REDIS_RESULT_BACKEND_DB_NUM: {{ .Values.redis.resultBackendDBNumber | quote }}
SENTINEL_HEADLESS_URL: {{ .Values.redis.sentinelURL }}
Expand Down
3 changes: 2 additions & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ deployment:
openaiSecretRef: openai-api-key
redis:
url: "redis://127.0.0.1"
port: "6397"
redisPort: "6397"
sentinelPort: "26397"
brokerDBNumber: "0"
resultBackendDBNumber: "1"
sentinelURL: ""
Expand Down

0 comments on commit 5177a15

Please sign in to comment.