@@ -112,6 +112,10 @@ To pull images from a local registry, you must provide the image pull secret and
112
112
The annotated [`values.yaml`](https://helm.sh/docs/topics/charts/#templates-and-values)
113
113
file below describes the values you can set for the RDI Helm installation.
114
114
115
+ At a minimum, you must set the values of `RDI_REDIS_HOST` and `RDI_REDIS_PORT`
116
+ in the `global.rdiSysConfig` section and also `RDI_REDIS_PASSWORD` in
117
+ ` global.rdiSysSecret` to enable the basic connection to the RDI database.
118
+
115
119
{{< note >}}If you want to use
116
120
[Redis Insight]({{< relref "/develop/tools/insight/rdi-connector" >}})
117
121
to connect to your RDI deployment from outside the K8s cluster, you
@@ -203,15 +207,16 @@ global:
203
207
# DO NOT modify this value.
204
208
# RDI_REDIS_CACERT: /etc/certificates/rdi_db/cacert
205
209
206
- # Uncomment these properties when using a TLS connection from RDI to its Redis database.
210
+ # Uncomment these properties when using an mTLS connection from RDI to its Redis database.
207
211
# DO NOT modify these values.
208
212
# RDI_REDIS_CERT: /etc/certificates/rdi_db/cert
209
213
# RDI_REDIS_KEY: /etc/certificates/rdi_db/key
210
214
211
215
# The passphrase used to get the private key stored in the secret store when using mTLS.
212
216
# RDI_REDIS_KEY_PASSPHRASE: ""
213
217
214
- # The key used to encrypt the JWT token used by RDI API.
218
+ # The key used to encrypt the JWT token used by RDI API. Best practice is for this
219
+ # to contain 32 ASCII characters (equivalent to 256 bits of data).
215
220
# JWT_SECRET_KEY: ""
216
221
217
222
rdiDbSSLSecret:
@@ -223,11 +228,11 @@ global:
223
228
# cacert: ""
224
229
225
230
# The content of the certificate PEM file.
226
- # Uncomment and set this property when using a TLS connection from RDI to its Redis database.
231
+ # Uncomment and set this property when using an mTLS connection from RDI to its Redis database.
227
232
# cert: ""
228
233
229
234
# The content of the private key PEM file.
230
- # Uncomment and set this property when using a TLS connection from RDI to its Redis database.
235
+ # Uncomment and set this property when using an mTLS connection from RDI to its Redis database.
231
236
# key: ""
232
237
233
238
# Container default security context.
0 commit comments