-
Notifications
You must be signed in to change notification settings - Fork 488
Description
Problem:
I'm not able to configure Redis connection through helm chart via connections.local_production_json
. I wanted to use connections.local_production_json
so I can configure multiple connections with passwords.
Context:
-
I used the helm chart v0.6.0 to deploy Redis Commander.
-
I set the
values.yaml
file based on the example like so:Click to toggle values.yaml
replicaCount: 1 serviceAccount: create: true connections: local_production_json: noSave: false noLogData: false # ui: # foldingChar: "|" redis: readOnly: true # server: # clientMaxBodySize: "500kb" # httpAuth: # username: "the-user" # password: "is-secret" connections: - label: "redis" host: "redis-master.redis.svc.cluster.local" port: "6379" password: 'MY_PASSWORD' dbIndex: 0
-
I confirmed that the configmap resource was successfully created
-
I confirmed that the configmap was successfully mounted
-
At this point, the UI was showing only connection
local (localhost:6739:0)
. This is NOT the connection I defined inlocal_production_json
. -
I verified that the connection in my
values.yaml
file was correct by manually adding it: -
After I manually added the connection, it was added to the
local-production.json
And here's example what the logs look like at the point where I manually added the connection. All the connection errors are coming from trying to conenect to
localhost:6739:0
, which I did NOT configure: