updated env variable name and descriptions
This commit is contained in:
parent
05f0dd4137
commit
e27ef320e7
@ -642,7 +642,7 @@ redis:
|
|||||||
# ssl config
|
# ssl config
|
||||||
ssl:
|
ssl:
|
||||||
# Enable/disable secure connection
|
# Enable/disable secure connection
|
||||||
enabled: "${REDIS_SSL_ENABLED:false}"
|
enabled: "${TB_REDIS_SSL_ENABLED:false}"
|
||||||
# Server SSL credentials
|
# Server SSL credentials
|
||||||
credentials:
|
credentials:
|
||||||
# Server credentials type (PEM - pem certificate file; KEYSTORE - java keystore)
|
# Server credentials type (PEM - pem certificate file; KEYSTORE - java keystore)
|
||||||
@ -651,9 +651,9 @@ redis:
|
|||||||
pem:
|
pem:
|
||||||
# Path redis server (CA) certificate
|
# Path redis server (CA) certificate
|
||||||
cert_file: "${TB_REDIS_SSL_PEM_CERT:}"
|
cert_file: "${TB_REDIS_SSL_PEM_CERT:}"
|
||||||
# Path to user certificate file (optional)
|
# Path to user certificate file. This is optional for the client and can be used for two-way authentication for the client
|
||||||
user_cert_file: "${TB_REDIS_SSL_PEM_KEY:}"
|
user_cert_file: "${TB_REDIS_SSL_PEM_KEY:}"
|
||||||
# Path to user private key file (optional)
|
# Path to user private key file. This is optional for the client and only needed if ‘ssl.pem.user_cert_file’ is configured.
|
||||||
user_key_file: "${TB_REDIS_SSL_PEM_KEY_PASSWORD:}"
|
user_key_file: "${TB_REDIS_SSL_PEM_KEY_PASSWORD:}"
|
||||||
# Keystore server credentials
|
# Keystore server credentials
|
||||||
keystore:
|
keystore:
|
||||||
|
|||||||
@ -108,7 +108,7 @@ public class ContainerTestSuite {
|
|||||||
|
|
||||||
if (IS_REDIS_SSL) {
|
if (IS_REDIS_SSL) {
|
||||||
addToFile(targetDir, "cache-redis.env",
|
addToFile(targetDir, "cache-redis.env",
|
||||||
Map.of("REDIS_SSL_ENABLED", "true",
|
Map.of("TB_REDIS_SSL_ENABLED", "true",
|
||||||
"TB_REDIS_SSL_PEM_CERT", "/redis/certs/redisCA.crt"));
|
"TB_REDIS_SSL_PEM_CERT", "/redis/certs/redisCA.crt"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -96,7 +96,7 @@ redis:
|
|||||||
password: "${REDIS_PASSWORD:}"
|
password: "${REDIS_PASSWORD:}"
|
||||||
ssl:
|
ssl:
|
||||||
# Enable/disable secure connection
|
# Enable/disable secure connection
|
||||||
enabled: "${REDIS_SSL_ENABLED:false}"
|
enabled: "${TB_REDIS_SSL_ENABLED:false}"
|
||||||
# Server SSL credentials
|
# Server SSL credentials
|
||||||
credentials:
|
credentials:
|
||||||
# Server credentials type (PEM - pem certificate file; KEYSTORE - java keystore)
|
# Server credentials type (PEM - pem certificate file; KEYSTORE - java keystore)
|
||||||
@ -105,9 +105,9 @@ redis:
|
|||||||
pem:
|
pem:
|
||||||
# Path redis server (CA) certificate
|
# Path redis server (CA) certificate
|
||||||
cert_file: "${TB_REDIS_SSL_PEM_CERT:}"
|
cert_file: "${TB_REDIS_SSL_PEM_CERT:}"
|
||||||
# Path to user certificate file
|
# Path to user certificate file. This is optional for the client and can be used for two-way authentication for the client
|
||||||
user_cert_file: "${TB_REDIS_SSL_PEM_KEY:}"
|
user_cert_file: "${TB_REDIS_SSL_PEM_KEY:}"
|
||||||
# Path to user private key file
|
# Path to user private key file. This is optional for the client and only needed if ‘ssl.pem.user_cert_file’ is configured.
|
||||||
user_key_file: "${TB_REDIS_SSL_PEM_KEY_PASSWORD:}"
|
user_key_file: "${TB_REDIS_SSL_PEM_KEY_PASSWORD:}"
|
||||||
# Keystore server credentials
|
# Keystore server credentials
|
||||||
keystore:
|
keystore:
|
||||||
|
|||||||
@ -129,7 +129,7 @@ redis:
|
|||||||
password: "${REDIS_PASSWORD:}"
|
password: "${REDIS_PASSWORD:}"
|
||||||
ssl:
|
ssl:
|
||||||
# Enable/disable secure connection
|
# Enable/disable secure connection
|
||||||
enabled: "${REDIS_SSL_ENABLED:false}"
|
enabled: "${TB_REDIS_SSL_ENABLED:false}"
|
||||||
# Server SSL credentials
|
# Server SSL credentials
|
||||||
credentials:
|
credentials:
|
||||||
# Server credentials type (PEM - pem certificate file; KEYSTORE - java keystore)
|
# Server credentials type (PEM - pem certificate file; KEYSTORE - java keystore)
|
||||||
@ -138,9 +138,9 @@ redis:
|
|||||||
pem:
|
pem:
|
||||||
# Path redis server (CA) certificate
|
# Path redis server (CA) certificate
|
||||||
cert_file: "${TB_REDIS_SSL_PEM_CERT:}"
|
cert_file: "${TB_REDIS_SSL_PEM_CERT:}"
|
||||||
# Path to user certificate file
|
# Path to user certificate file. This is optional for the client and can be used for two-way authentication for the client
|
||||||
user_cert_file: "${TB_REDIS_SSL_PEM_KEY:}"
|
user_cert_file: "${TB_REDIS_SSL_PEM_KEY:}"
|
||||||
# Path to user private key file
|
# Path to user private key file. This is optional for the client and only needed if ‘ssl.pem.user_cert_file’ is configured.
|
||||||
user_key_file: "${TB_REDIS_SSL_PEM_KEY_PASSWORD:}"
|
user_key_file: "${TB_REDIS_SSL_PEM_KEY_PASSWORD:}"
|
||||||
# Keystore server credentials
|
# Keystore server credentials
|
||||||
keystore:
|
keystore:
|
||||||
|
|||||||
@ -96,7 +96,7 @@ redis:
|
|||||||
password: "${REDIS_PASSWORD:}"
|
password: "${REDIS_PASSWORD:}"
|
||||||
ssl:
|
ssl:
|
||||||
# Enable/disable secure connection
|
# Enable/disable secure connection
|
||||||
enabled: "${REDIS_SSL_ENABLED:false}"
|
enabled: "${TB_REDIS_SSL_ENABLED:false}"
|
||||||
# Server SSL credentials
|
# Server SSL credentials
|
||||||
credentials:
|
credentials:
|
||||||
# Server credentials type (PEM - pem certificate file; KEYSTORE - java keystore)
|
# Server credentials type (PEM - pem certificate file; KEYSTORE - java keystore)
|
||||||
@ -105,9 +105,9 @@ redis:
|
|||||||
pem:
|
pem:
|
||||||
# Path redis server (CA) certificate
|
# Path redis server (CA) certificate
|
||||||
cert_file: "${TB_REDIS_SSL_PEM_CERT:}"
|
cert_file: "${TB_REDIS_SSL_PEM_CERT:}"
|
||||||
# Path to user certificate file
|
# Path to user certificate file. This is optional for the client and can be used for two-way authentication for the client
|
||||||
user_cert_file: "${TB_REDIS_SSL_PEM_KEY:}"
|
user_cert_file: "${TB_REDIS_SSL_PEM_KEY:}"
|
||||||
# Path to user private key file
|
# Path to user private key file. This is optional for the client and only needed if ‘ssl.pem.user_cert_file’ is configured.
|
||||||
user_key_file: "${TB_REDIS_SSL_PEM_KEY_PASSWORD:}"
|
user_key_file: "${TB_REDIS_SSL_PEM_KEY_PASSWORD:}"
|
||||||
# Keystore server credentials
|
# Keystore server credentials
|
||||||
keystore:
|
keystore:
|
||||||
|
|||||||
@ -97,7 +97,7 @@ redis:
|
|||||||
password: "${REDIS_PASSWORD:}"
|
password: "${REDIS_PASSWORD:}"
|
||||||
ssl:
|
ssl:
|
||||||
# Enable/disable secure connection
|
# Enable/disable secure connection
|
||||||
enabled: "${REDIS_SSL_ENABLED:false}"
|
enabled: "${TB_REDIS_SSL_ENABLED:false}"
|
||||||
# Server SSL credentials
|
# Server SSL credentials
|
||||||
credentials:
|
credentials:
|
||||||
# Server credentials type (PEM - pem certificate file; KEYSTORE - java keystore)
|
# Server credentials type (PEM - pem certificate file; KEYSTORE - java keystore)
|
||||||
@ -106,9 +106,9 @@ redis:
|
|||||||
pem:
|
pem:
|
||||||
# Path redis server (CA) certificate
|
# Path redis server (CA) certificate
|
||||||
cert_file: "${TB_REDIS_SSL_PEM_CERT:}"
|
cert_file: "${TB_REDIS_SSL_PEM_CERT:}"
|
||||||
# Path to user certificate file
|
# Path to user certificate file. This is optional for the client and can be used for two-way authentication for the client
|
||||||
user_cert_file: "${TB_REDIS_SSL_PEM_KEY:}"
|
user_cert_file: "${TB_REDIS_SSL_PEM_KEY:}"
|
||||||
# Path to user private key file
|
# Path to user private key file. This is optional for the client and only needed if ‘ssl.pem.user_cert_file’ is configured.
|
||||||
user_key_file: "${TB_REDIS_SSL_PEM_KEY_PASSWORD:}"
|
user_key_file: "${TB_REDIS_SSL_PEM_KEY_PASSWORD:}"
|
||||||
# Keystore server credentials
|
# Keystore server credentials
|
||||||
keystore:
|
keystore:
|
||||||
|
|||||||
@ -96,7 +96,7 @@ redis:
|
|||||||
password: "${REDIS_PASSWORD:}"
|
password: "${REDIS_PASSWORD:}"
|
||||||
ssl:
|
ssl:
|
||||||
# Enable/disable secure connection
|
# Enable/disable secure connection
|
||||||
enabled: "${REDIS_SSL_ENABLED:false}"
|
enabled: "${TB_REDIS_SSL_ENABLED:false}"
|
||||||
# Server SSL credentials
|
# Server SSL credentials
|
||||||
credentials:
|
credentials:
|
||||||
# Server credentials type (PEM - pem certificate file; KEYSTORE - java keystore)
|
# Server credentials type (PEM - pem certificate file; KEYSTORE - java keystore)
|
||||||
@ -105,9 +105,9 @@ redis:
|
|||||||
pem:
|
pem:
|
||||||
# Path redis server (CA) certificate
|
# Path redis server (CA) certificate
|
||||||
cert_file: "${TB_REDIS_SSL_PEM_CERT:}"
|
cert_file: "${TB_REDIS_SSL_PEM_CERT:}"
|
||||||
# Path to user certificate file
|
# Path to user certificate file. This is optional for the client and can be used for two-way authentication for the client
|
||||||
user_cert_file: "${TB_REDIS_SSL_PEM_KEY:}"
|
user_cert_file: "${TB_REDIS_SSL_PEM_KEY:}"
|
||||||
# Path to user private key file
|
# Path to user private key file. This is optional for the client and only needed if ‘ssl.pem.user_cert_file’ is configured.
|
||||||
user_key_file: "${TB_REDIS_SSL_PEM_KEY_PASSWORD:}"
|
user_key_file: "${TB_REDIS_SSL_PEM_KEY_PASSWORD:}"
|
||||||
# Keystore server credentials
|
# Keystore server credentials
|
||||||
keystore:
|
keystore:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user