@@ -104,13 +104,32 @@ To pull images from a local registry, you must provide the image pull secret and
1041041. Start the installation :
105105
106106 ` ` ` bash
107- helm install <The logical chart name> rdi-k8s/< rdi-tag>/helm --create-namespace -n rdi
107+ helm install <The logical chart name> ./ rdi --create-namespace -n rdi
108108 ` ` `
109109
110110# ## The `values.yaml` file
111111
112112The annotated [`values.yaml`](https://helm.sh/docs/topics/charts/#templates-and-values)
113- file below describes the values you can set for the RDI Helm installation :
113+ file below describes the values you can set for the RDI Helm installation.
114+
115+ Note that if you want to use
116+ [Redis Insight]({{< relref "/develop/tools/insight/rdi-connector" >}})
117+ to connect to your RDI deployment and you are using TLS, make sure you
118+ uncomment the `RDI_API_AUTH_ENABLED` line in the default `values.yaml` :
119+
120+ ` ` ` yaml
121+ # Enable authentication for the RDI API.
122+ RDI_API_AUTH_ENABLED: "1"
123+ ` ` `
124+
125+ You must also set the appropriate value for `JWT_SECRET_KEY` :
126+
127+ ` ` ` yaml
128+ # The key used to encrypt the JWT token used by RDI API.
129+ JWT_SECRET_KEY: "yourKey"
130+ ` ` `
131+
132+ The full `values.yaml` file is shown below :
114133
115134` ` ` yaml
116135# Default RDI values in YAML format.
@@ -436,11 +455,10 @@ NAME NAMESPACE REVISION UPDATED STATUS CHA
436455<logical_chart_name> rdi 1 2024-10-10 16:53... +0300 IDT deployed rdi-1.0.0
437456```
438457
439-
440458Also, check that the following pods have ` Running ` status:
441459
442460``` bash
443- sudo k3s kubectl get pod -n rdi
461+ kubectl get pod -n rdi
444462
445463NAME READY STATUS RESTARTS AGE
446464rdi-api-< id> 1/1 Running 0 29m
0 commit comments