-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
K8s: install helm chart #957
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
29bedf8
rough outline
kaitlynmichael e9ef41b
intro, prereq, install
kaitlynmichael df2aca9
grammar edits and delete steps
kaitlynmichael 0abe592
install with values file
kaitlynmichael 7d12a36
Apply suggestions from code review
kaitlynmichael f90991a
wording edit
kaitlynmichael 31f69b7
finish draft
kaitlynmichael 969c2b1
Update content/operate/kubernetes/deployment/helm.md
kaitlynmichael ae7153b
Update content/operate/kubernetes/deployment/helm.md
kaitlynmichael 6d7bd52
Update content/operate/kubernetes/deployment/helm.md
kaitlynmichael 9a61eb4
Update content/operate/kubernetes/deployment/helm.md
kaitlynmichael 18c6415
Update content/operate/kubernetes/deployment/helm.md
kaitlynmichael 0b6b661
Update content/operate/kubernetes/deployment/helm.md
kaitlynmichael adbbea5
some review feedback changes
kaitlynmichael 7002540
clarify placeholder variables
kaitlynmichael 9608943
fix relrefs
kaitlynmichael db95cd1
Merge branch 'main' into DOC-3433
kaitlynmichael 5eef954
review changes
kaitlynmichael bf1b08c
Update content/operate/kubernetes/deployment/helm.md
kaitlynmichael 641d8c8
Update content/operate/kubernetes/deployment/helm.md
kaitlynmichael 02c947a
Apply suggestions from code review
kaitlynmichael 92c53d1
Update content/operate/kubernetes/deployment/helm.md
kaitlynmichael f02eee8
RC: Create Pro database changes
cmilesb eebbde1
Merge pull request #1320 from redis/DOC-5016
cmilesb b7b4312
Merge branch 'main' into DOC-3433
kaitlynmichael File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
--- | ||
Title: Install Redis Enterprise Helm chart | ||
alwaysopen: false | ||
categories: | ||
- docs | ||
- operate | ||
- kubernetes | ||
description: Install Redis Enterprise for Kubernetes version 7.8.Wisconsin using Helm charts. | ||
linkTitle: Helm | ||
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 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 | ||
|
||
- 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/). | ||
|
||
### Example values | ||
|
||
The steps below use the following placeholders to indicate command line parameters you must provide: | ||
|
||
- `<repo-name>` is the name of the repo holding your Helm chart (example: `redis`). | ||
- `<release-name>` is the name you give a specific installation of the Helm chart (example: `my-redis-enterprise-operator`) | ||
- `<chart-version>` is the version of the Helm chart you are installing (example: `7.8.2-2`) | ||
- `<namespace-name>` is the name of the new namespace the Redis operator will run in (example: `ns1`) | ||
- `<path-to-chart>` is the filepath to the Helm chart, if it is stored in a local directory (example: `/home/charts/redis-enterprise-operator`) | ||
|
||
## Install | ||
|
||
1. Add the Redis repository. | ||
|
||
```sh | ||
helm repo add <repo-name> https://helm.redis.io/ | ||
``` | ||
|
||
2. Install the Helm chart into a new namespace. | ||
|
||
```sh | ||
helm install <release-name> redis/redis-enterprise-operator \ | ||
--version <chart-version> \ | ||
--namespace <namespace-name> \ | ||
--create-namespace | ||
``` | ||
|
||
To install with Openshift, add `--set openshift.mode=true`. | ||
|
||
To monitor the installation add the `--debug` flag. The installation runs several jobs synchronously and may take a few minutes to complete. | ||
|
||
### Install from local directory | ||
|
||
1. Find the latest release on the [redis-enterprise-k8s-docs](https://github.com/RedisLabs/redis-enterprise-k8s-docs/releases) repo and download the `tar.gz` source code into a local directory. | ||
|
||
2. Install the Helm chart from your local directory. | ||
|
||
```sh | ||
helm install <release-name> <path-to-chart> \ | ||
--namespace <namespace-name> \ | ||
--create-namespace | ||
``` | ||
|
||
To install with Openshift, add `--set openshift.mode=true`. | ||
|
||
To monitor the installation add the `--debug` flag. The installation runs several jobs synchronously and may take a few minutes to complete. | ||
|
||
### Specify values during install | ||
|
||
1. View configurable values with `helm show values <repo-name>/<chart-name>`. | ||
|
||
2. Install the Helm chart, overriding specific value defaults using `--set`. | ||
|
||
```sh | ||
helm install <operator-name> redis/redis-enterprise-operator \ | ||
--version <release-name> \ | ||
--namespace <namespace-name> \ | ||
--create-namespace | ||
--set <key1>=<value1> \ | ||
--set <key2>=<value2> | ||
``` | ||
|
||
### Install with values file | ||
kaitlynmichael marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
1. View configurable values with `helm show values <repo-name>/<chart-name>`. | ||
|
||
2. Create a YAML file to specify the values you want to configure. | ||
|
||
3. Install the chart with the `--values` option. | ||
|
||
```sh | ||
helm install <operator-name> redis/redis-enterprise-operator \ | ||
--version <release-name> \ | ||
--namespace <namespace-name> \ | ||
--create-namespace \ | ||
--values <path-to-values-file> | ||
``` | ||
|
||
## Uninstall | ||
|
||
1. Delete any custom resources managed by the operator. See [Delete custom resources]({{<relref "operate/kubernetes/re-clusters/delete-custom-resources">}}) for detailed steps. You must delete custom resources in the correct order to avoid errors. | ||
|
||
2. Uninstall the Helm chart. | ||
|
||
```sh | ||
helm uninstall <release-name> | ||
``` | ||
|
||
This removes all Kubernetes resources associated with the chart and deletes the release. | ||
|
||
{{<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>}} | ||
|
||
## Known limitations | ||
|
||
- 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. | ||
- Upgrades and migrations are not supported. | ||
- The chart doesn't include configuration options for multiple namespaces, rack-awareness, and Vault integration. The steps for configuring these options remain the same. | ||
- The chart has had limited testing in advanced setups, including Active-Active configurations, air-gapped deployments, and IPv6/dual-stack environments. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm definitely not a language authority, but is it "install with OpenShift" or "install to OpenShift" (or "install to an OpenShift cluster")?
Also - I believe it's OpenShift and not Openshift.