Skip to content

Commit

Permalink
grammar edits and delete steps
Browse files Browse the repository at this point in the history
  • Loading branch information
kaitlynmichael committed Dec 5, 2024
1 parent e9ef41b commit df2aca9
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions content/operate/kubernetes/deployment/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ weight: 11

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/).

{{<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>}}
{{<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>}}

## Prerequisites

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

## Install

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

1. Install the Helm chart in a new namespace.
1. Install the Helm chart into a new namespace.

```sh
helm install <my-redis-enterprise-operator> redis-enterprise-helm/redis-enterprise-operator \
helm install <operator-name> redis-enterprise-helm/redis-enterprise-operator \
-- version <release-name> \
-- namespace <namespace-name> \
-- create-namespace
```

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

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

### Install from local directory

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

## Uninstall

1. Delete any custom resources managed by the operator in the following order. LINK TO UNINSTALL PAGE, POSSIBLY EMBED
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.

1. Uninstall the helm chart.

```sh
kubectl delete redb <name>
kubectl delete rerc <name>
kubectl delete reaadb <name>
kubectl delete rec <name>
helm uninstall <release-name>
```

This removes all Kubernetes resources associated with the chart and deletes the release.

## Known limitations

0 comments on commit df2aca9

Please sign in to comment.