refactor: 🔧 allow redis user to be configured
Follow up #10366, 3df3c97deb
This commit is contained in:
parent
09b3e63558
commit
d96877033b
|
@ -60,6 +60,7 @@ redis:
|
|||
#pass: example-pass
|
||||
#prefix: example-prefix
|
||||
#db: 1
|
||||
#user: default
|
||||
|
||||
# Please configure either MeiliSearch *or* Sonic.
|
||||
# If both MeiliSearch and Sonic configurations are present, MeiliSearch will take precedence.
|
||||
|
|
|
@ -153,6 +153,7 @@ redis:
|
|||
pass: {{ .Values.redis.auth.password | quote }}
|
||||
#prefix: example-prefix
|
||||
#db: 1
|
||||
#user: default
|
||||
|
||||
# ┌─────────────────────┐
|
||||
#───┘ Sonic configuration └─────────────────────────────────────
|
||||
|
|
|
@ -23,6 +23,7 @@ export type Source = {
|
|||
pass: string;
|
||||
db?: number;
|
||||
prefix?: string;
|
||||
user?: string;
|
||||
};
|
||||
elasticsearch: {
|
||||
host: string;
|
||||
|
|
|
@ -5,9 +5,9 @@ export function createConnection() {
|
|||
return new Redis({
|
||||
port: config.redis.port,
|
||||
host: config.redis.host,
|
||||
family: config.redis.family == null ? 0 : config.redis.family,
|
||||
family: config.redis.family ?? 0,
|
||||
password: config.redis.pass,
|
||||
username: "default",
|
||||
username: config.redis.user ?? "default",
|
||||
keyPrefix: `${config.redis.prefix}:`,
|
||||
db: config.redis.db || 0,
|
||||
tls: {
|
||||
|
|
Loading…
Reference in New Issue