Redis: Allow customizing ssl ca certificates path

This allows users to give ssl_ca_certs argument of redis client so that
a specific file, instead of the system global certificates, can be
used.

Closes-Bug: #2012226
Change-Id: Id7e76c35c5ce7b22a8261026fe76557d509616b3
This commit is contained in:
Takashi Kajinami 2023-11-27 10:13:03 +09:00
parent 7698c582f3
commit 38523acdc6
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
features:
- |
Now redis backend supports customizing path to CA certificates using
the ``ssl_ca_certs`` query parameter.

View File

@ -260,6 +260,7 @@ class RedisDriver(coordination.CoordinationDriverCachedRunWatchers,
'ssl',
'ssl_certfile',
'ssl_keyfile',
'ssl_ca_certs',
'sentinel',
'sentinel_fallback',
])