Skip to content

Commit

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

0 comments on commit b8e0b04

Please sign in to comment.