open-match
open-match copied to clipboard
Using Redis Enterprise for Openmatch core
Hi there,
For persistent data, I would like to using an external redis tool such as Redis enterprise for OM core. How can custom helm chart? Thanks.
Hi @laivu266, you can configure your redis by disabling it and mention your custom redis deployment instead by following this 👉🏻 documentation. Also if you want to install using yaml files, you would need to generate those files by command make install/yaml/
after making changes in /install/helm/open-match/values.yaml
file.
Hi @mridulji , Because I used Redis enterprise, I need to inject password in redis connection. So how can I inject redis password into helm values? Thanks
@laivu266 how are you deploying Redis? That would give us some more insight on a path to resolution. You can deploy and set the password during deployment or store it as a k8s secret.
hi @syntxerror ,
This is my helm value command
helm install open-match open-match/open-match --set open-match-customize.enabled=true --set open-match-customize.evaluator.enabled=true --set open-match-override.enabled=true --set open-match-core.redis.enabled=false --set open-match-core.redis.hostname="user:password@redis-endpoint" --set open-match-core.redis.port=<redis-port> -nopen-match
It looks like weakly security
@laivu266 This seems like the recommended approach for deploying Open Match with Redis Enterprise. We're publishing a tutorial on this soon and is recommended from some folks over at Redis. I will double check but I'm pretty sure this is the way to go
我找到这里可以配置自定义redis,无密码时可以进行连接,有密码时,具体如何配置呢?可以给一个示例吗?