Skip to content

Commit 2c654df

Browse files
Merge pull request #1184 from redis/DOC-4877-rdi-uninstall-k8s
DOC-4877 added RDI K8s uninstall instructions
2 parents 0b0be34 + 4059738 commit 2c654df

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

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

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,11 @@ To pull images from a local registry, you must provide the image pull secret and
144144
helm install rdi rdi-<rdi-tag>.tar.gz -f rdi-values.yaml
145145
```
146146

147+
{{< note >}}By default, RDI will be installed in a namespace called
148+
`rdi`. If you want to use a custom namespace, pass the option
149+
`--namespace <custom-namespace>` to the `helm install` command.
150+
{{< /note >}}
151+
147152
### The `values.yaml` file
148153

149154
The annotated [`values.yaml`](https://helm.sh/docs/topics/charts/#templates-and-values)
@@ -549,3 +554,18 @@ you are ready to start using RDI. See the guides to
549554
[deploying]({{< relref "/integrate/redis-data-integration/data-pipelines/deploy" >}})
550555
RDI pipelines for more information. You can also configure and deploy a pipeline
551556
using [Redis Insight]({{< relref "/develop/tools/insight/rdi-connector" >}}).
557+
558+
## Uninstall RDI
559+
560+
If you want to remove your RDI K8s installation, first run
561+
the following commands. (If you installed with a custom namespace then
562+
replace `rdi` with the name of your namespace.)
563+
564+
```bash
565+
helm uninstall rdi -n rdi
566+
kubectl delete namespace rdi
567+
```
568+
569+
If you also want to delete the keys from your RDI database, connect to it with
570+
[`redis-cli`]({{< relref "/develop/tools/cli" >}}) and run a
571+
[`FLUSHALL`]({{< relref "/commands/flushall" >}}) command.

0 commit comments

Comments
 (0)