Skip to content

Commit df2aca9

Browse files
grammar edits and delete steps
1 parent e9ef41b commit df2aca9

File tree

1 file changed

+15
-13
lines changed
  • content/operate/kubernetes/deployment

1 file changed

+15
-13
lines changed

content/operate/kubernetes/deployment/helm.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ weight: 11
1212

1313
Helm charts provide a simple way to install the Redis Enterprise for Kubernetes operator in just a few steps. For more information about Helm, go to [https://helm.sh/docs/](https://helm.sh/docs/).
1414

15-
{{<note>}} This feature is currently in public preview and is not supported on production workloads. Only new installations of Redis operator are supported at this time. The steps to [create the RedisEnterpriseCluster (REC)]({{<relref "operate/kubernetes/deployment/quick-start/#create-a-redis-enterprise-cluster-rec">}}) and other custom resources remain the same.{{</note>}}
15+
{{<note>}} This feature is currently in public preview and is not supported on production workloads. Only new installations of the Redis operator are supported at this time. The steps for [creating the RedisEnterpriseCluster (REC)]({{<relref "operate/kubernetes/deployment/quick-start/#create-a-redis-enterprise-cluster-rec">}}) and other custom resources remain the same.{{</note>}}
1616

1717
## Prerequisites
1818

19-
- [Supported distribution]({{< relref "/operate/kubernetes/reference/supported_k8s_distributions.md" >}}) of Kubernetes
20-
- Three or more worker nodes
21-
- [Kubernetes client (kubectl)](https://kubernetes.io/docs/tasks/tools/)
22-
- [Helm 3.10 or later](https://helm.sh/docs/intro/install/)
19+
- A [supported distribution]({{< relref "/operate/kubernetes/reference/supported_k8s_distributions.md" >}}) of Kubernetes.
20+
- At least three worker nodes.
21+
- [Kubernetes client (kubectl)](https://kubernetes.io/docs/tasks/tools/).
22+
- [Helm 3.10 or later](https://helm.sh/docs/intro/install/).
2323

2424
## Install
2525

@@ -29,18 +29,18 @@ Helm charts provide a simple way to install the Redis Enterprise for Kubernetes
2929
helm repo add redis-enterprise-helm https://helm.redis.io/
3030
```
3131

32-
1. Install the Helm chart in a new namespace.
32+
1. Install the Helm chart into a new namespace.
3333

3434
```sh
35-
helm install <my-redis-enterprise-operator> redis-enterprise-helm/redis-enterprise-operator \
35+
helm install <operator-name> redis-enterprise-helm/redis-enterprise-operator \
3636
-- version <release-name> \
3737
-- namespace <namespace-name> \
3838
-- create-namespace
3939
```
4040

4141
To install with Openshift, add `--set openshift.mode=true`.
4242

43-
To monitor the install add the `--debug` flag. The installation runs several jobs synchonously and may take a minute or two to complete.
43+
To monitor the installation add the `--debug` flag. The installation runs several jobs synchonously and may take few minutes to complete.
4444

4545
### Install from local directory
4646

@@ -57,12 +57,14 @@ See [`values.yaml`](https://github.com/RedisLabs/redis-enterprise-operator/blob/
5757

5858
## Uninstall
5959

60-
1. Delete any custom resources managed by the operator in the following order. LINK TO UNINSTALL PAGE, POSSIBLY EMBED
60+
1. Delete any custom resources managed by the operator. See [Delete custom resources]({{<relref "content/operate/kubernetes/re-clusters/delete-custom-resources.md">}}) for detailed steps. Custom resources must be deleted in the correct order to avoid errors.
61+
62+
1. Uninstall the helm chart.
63+
6164
```sh
62-
kubectl delete redb <name>
63-
kubectl delete rerc <name>
64-
kubectl delete reaadb <name>
65-
kubectl delete rec <name>
65+
helm uninstall <release-name>
6666
```
6767

68+
This removes all Kubernetes resources associated with the chart and deletes the release.
69+
6870
## Known limitations

0 commit comments

Comments
 (0)