You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I'd like to be able to use our own secret for Redis authentication when using BYO Redis with the OpenMatch Helm Chart. If I set my values.yaml to the following:
open-match-core:
redis:
enabled: false # Disable the bitnami redis chart.
hostname: master.my-redis.use1.cache.amazonaws.com
port: 6379
user: default
redis:
auth:
enabled: true
secretMountPath: /app/secrets # This will mount a secret named `redis-password` from the namespace. The OM chart will automatically add `redis-password` to this path.
Helm will fail to template or install the helm chart with the following error:
Describe the solution you'd like
Ideally I'd be able to provide the name of my own secret, or at least have it default to something that doesn't necessarily requires the redis subchart to be deployed. It should be possible to pass a Values.redis.secretName, and only if that's not provided, attempt to retrieve the name from the subchart.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I'd like to be able to use our own secret for Redis authentication when using BYO Redis with the OpenMatch Helm Chart. If I set my values.yaml to the following:
Helm will fail to template or install the helm chart with the following error:
As it tries to
call-nested
common.names.fullname
from theredis
sub-chart, this is present in this line:open-match/install/helm/open-match/templates/_helpers.tpl
Line 115 in dbda6c8
Describe the solution you'd like
Ideally I'd be able to provide the name of my own secret, or at least have it default to something that doesn't necessarily requires the
redis
subchart to be deployed. It should be possible to pass aValues.redis.secretName
, and only if that's not provided, attempt to retrieve the name from the subchart.The text was updated successfully, but these errors were encountered: