You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/operate/kubernetes/deployment/helm.md
+34-7Lines changed: 34 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,16 +40,38 @@ Helm charts provide a simple way to install the Redis Enterprise for Kubernetes
40
40
41
41
To install with Openshift, add `--set openshift.mode=true`.
42
42
43
-
To monitor the installation add the `--debug` flag. The installation runs several jobssynchonously and may take few minutes to complete.
43
+
To monitor the installation add the `--debug` flag. The installation runs several jobssynchronously and may take few minutes to complete.
44
44
45
45
### Install from local directory
46
46
47
-
DOWNLOAD TGZ FILE
48
-
HELM INSTALL FROM LOCAL DIRECTORY
47
+
1. Find the latest release on the [redis-enterprise-k8s-docs Github](https://github.com/RedisLabs/redis-enterprise-k8s-docs/releases) and download the `tar.gz`source code into a local directory.
49
48
50
-
## Configuration
49
+
1. Install the Helm chart from your local directory.
51
50
52
-
helm show values redis/redis-enterprise-operator --version <release-name>
51
+
```sh
52
+
helm install <release-name><path-to-chart> \
53
+
-- namespace <namespace-name> \
54
+
-- create-namespace
55
+
```
56
+
57
+
To install with Openshift, add `--set openshift.mode=true`.
58
+
59
+
To monitor the installation add the `--debug` flag. The installation runs several jobs synchronously and may take few minutes to complete.
60
+
61
+
### Specify values during install
62
+
63
+
1. View configurable values with `helm show values redis/redis-enterprise-operator --version <release-name>`.
64
+
65
+
1. Install the Helm chart, overriding specific value defaults using `--set`.
@@ -68,8 +90,6 @@ helm show values redis/redis-enterprise-operator --version <release-name>
68
90
-- values <path-to-values-file>
69
91
```
70
92
71
-
### Install and override specific default values
72
-
73
93
## Uninstall
74
94
75
95
1. Delete any custom resources managed by the operator. See [Delete custom resources]({{<relref "content/operate/kubernetes/re-clusters/delete-custom-resources.md">}}) fordetailed steps. Custom resources must be deletedin the correct order to avoid errors.
@@ -82,4 +102,11 @@ helm show values redis/redis-enterprise-operator --version <release-name>
82
102
83
103
This removes all Kubernetes resources associated with the chart and deletes the release.
84
104
105
+
{{<note>}}Custom Resource Definitions (CRDs) installed by the chart are not removed during chart uninstallation. To remove them manually after uninstalling the chart, run `kubectl delete crds -l app=redis-enterprise`.{{</note>}}
106
+
85
107
## Known limitations
108
+
109
+
- 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.
110
+
- Upgrades and migrations are not supported.
111
+
- The chart doesn't include configuration options for multiple namespaces, rack-awareness, and Vault integration. The steps for configuring these options remains the same.
112
+
- The chart has had limited testing in advanced setups, including Active-Active configurations, air-gapped deployments, and IPv6/dual-stack environments.
0 commit comments