@@ -104,13 +104,32 @@ To pull images from a local registry, you must provide the image pull secret and
104
104
1. Start the installation :
105
105
106
106
` ` ` 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
108
108
` ` `
109
109
110
110
# ## The `values.yaml` file
111
111
112
112
The 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 :
114
133
115
134
` ` ` yaml
116
135
# Default RDI values in YAML format.
@@ -436,11 +455,10 @@ NAME NAMESPACE REVISION UPDATED STATUS CHA
436
455
<logical_chart_name> rdi 1 2024-10-10 16:53... +0300 IDT deployed rdi-1.0.0
437
456
```
438
457
439
-
440
458
Also, check that the following pods have ` Running ` status:
441
459
442
460
``` bash
443
- sudo k3s kubectl get pod -n rdi
461
+ kubectl get pod -n rdi
444
462
445
463
NAME READY STATUS RESTARTS AGE
446
464
rdi-api-< id> 1/1 Running 0 29m
0 commit comments