Skip to content

Commit 29301ce

Browse files
DOC-4561 added suggested fixes
1 parent 3032fe1 commit 29301ce

File tree

1 file changed

+22
-4
lines changed

1 file changed

+22
-4
lines changed

content/integrate/redis-data-integration/installation/install-k8s.md

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,32 @@ To pull images from a local registry, you must provide the image pull secret and
104104
1. 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

112112
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:
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-
440458
Also, 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

445463
NAME READY STATUS RESTARTS AGE
446464
rdi-api-<id> 1/1 Running 0 29m

0 commit comments

Comments
 (0)