@@ -27,7 +27,7 @@ startCommand:
2727 type : boolean
2828 default : false
2929 description : Enable SSL for Redis connection
30- redisCAPath :
30+ redisSSLCAPath :
3131 type : string
3232 default : " "
3333 description : CA certificate path for verifying server
@@ -39,11 +39,11 @@ startCommand:
3939 type : string
4040 default : " "
4141 description : Client certificate file for authentication
42- redisCertReqs :
42+ redisSSLCertReqs :
4343 type : string
4444 default : required
4545 description : Certificate requirements
46- redisCACerts :
46+ redisSSLCACerts :
4747 type : string
4848 default : " "
4949 description : Path to trusted CA certificates file
@@ -59,11 +59,11 @@ startCommand:
5959 REDIS_USERNAME : config.redisUsername,
6060 REDIS_PWD : config.redisPwd,
6161 REDIS_SSL : String(config.redisSSL),
62- REDIS_CA_PATH : config.redisCAPath ,
62+ REDIS_SSL_CA_PATH : config.redisSSLCAPath ,
6363 REDIS_SSL_KEYFILE : config.redisSSLKeyfile,
6464 REDIS_SSL_CERTFILE : config.redisSSLCertfile,
65- REDIS_CERT_REQS : config.redisCertReqs ,
66- REDIS_CA_CERTS : config.redisCACerts
65+ REDIS_SSL_CERT_REQS : config.redisSSLCertReqs ,
66+ REDIS_SSL_CA_CERTS : config.redisSSLCACerts
6767 }
6868 })
6969 exampleConfig :
@@ -72,8 +72,8 @@ startCommand:
7272 redisUsername : default
7373 redisPwd : " "
7474 redisSSL : false
75- redisCAPath : " "
75+ redisSSLCAPath : " "
7676 redisSSLKeyfile : " "
7777 redisSSLCertfile : " "
78- redisCertReqs : required
79- redisCACerts : " "
78+ redisSSLCertReqs : required
79+ redisSSLCACerts : " "
0 commit comments