From 48051ebebf82a6d0c748ded8ed48e0cebb0394ed Mon Sep 17 00:00:00 2001 From: Kaitlyn Michael Date: Tue, 9 Jun 2026 14:32:57 -0500 Subject: [PATCH] add helm pull option --- .../kubernetes/7.22/deployment/helm.md | 36 ++++++++++++++++--- .../kubernetes/7.8.6/deployment/helm.md | 36 ++++++++++++++++--- .../kubernetes/8.0.18/deployment/helm.md | 36 ++++++++++++++++--- .../operate/kubernetes/8.0/deployment/helm.md | 36 ++++++++++++++++--- content/operate/kubernetes/deployment/helm.md | 36 ++++++++++++++++--- 5 files changed, 155 insertions(+), 25 deletions(-) diff --git a/content/operate/kubernetes/7.22/deployment/helm.md b/content/operate/kubernetes/7.22/deployment/helm.md index 3d496cbd17..2345a88417 100644 --- a/content/operate/kubernetes/7.22/deployment/helm.md +++ b/content/operate/kubernetes/7.22/deployment/helm.md @@ -55,15 +55,41 @@ To monitor the installation add the `--debug` flag. The installation runs severa ### Install from local directory +If you need a local copy of the chart, for example to inspect it or customize values, use one of the following methods. + +**Pull the packaged chart (recommended).** `helm pull` fetches the exact packaged chart the Helm repository serves for the version you specify, matching what `helm install` from the repository would deploy. + +1. Add the Redis repository, if you haven't already. + + ```sh + helm repo add https://helm.redis.io + ``` + +2. Pull and unpack the chart. This creates a `redis-enterprise-operator` directory in your current location. + + ```sh + helm pull /redis-enterprise-operator --version --untar + ``` + +3. Install the Helm chart from the local directory. + + ```sh + helm install ./redis-enterprise-operator \ + --namespace \ + --create-namespace + ``` + +**Download the source code.** Alternatively, download the chart source from GitHub. + 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 \ - --namespace \ - --create-namespace -``` + ```sh + helm install \ + --namespace \ + --create-namespace + ``` To install with Openshift, add `--set openshift.mode=true`. diff --git a/content/operate/kubernetes/7.8.6/deployment/helm.md b/content/operate/kubernetes/7.8.6/deployment/helm.md index a778eee9a8..c811fc3907 100644 --- a/content/operate/kubernetes/7.8.6/deployment/helm.md +++ b/content/operate/kubernetes/7.8.6/deployment/helm.md @@ -55,15 +55,41 @@ To monitor the installation add the `--debug` flag. The installation runs severa ### Install from local directory +If you need a local copy of the chart, for example to inspect it or customize values, use one of the following methods. + +**Pull the packaged chart (recommended).** `helm pull` fetches the exact packaged chart the Helm repository serves for the version you specify, matching what `helm install` from the repository would deploy. + +1. Add the Redis repository, if you haven't already. + + ```sh + helm repo add https://helm.redis.io + ``` + +2. Pull and unpack the chart. This creates a `redis-enterprise-operator` directory in your current location. + + ```sh + helm pull /redis-enterprise-operator --version --untar + ``` + +3. Install the Helm chart from the local directory. + + ```sh + helm install ./redis-enterprise-operator \ + --namespace \ + --create-namespace + ``` + +**Download the source code.** Alternatively, download the chart source from GitHub. + 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 \ - --namespace \ - --create-namespace -``` + ```sh + helm install \ + --namespace \ + --create-namespace + ``` To install with Openshift, add `--set openshift.mode=true`. diff --git a/content/operate/kubernetes/8.0.18/deployment/helm.md b/content/operate/kubernetes/8.0.18/deployment/helm.md index 1ac11e54e2..b09aa74a41 100644 --- a/content/operate/kubernetes/8.0.18/deployment/helm.md +++ b/content/operate/kubernetes/8.0.18/deployment/helm.md @@ -64,15 +64,41 @@ To monitor the installation add the `--debug` flag. The installation runs severa ### Install from local directory +If you need a local copy of the chart, for example to inspect it or customize values, use one of the following methods. + +**Pull the packaged chart (recommended).** `helm pull` fetches the exact packaged chart the Helm repository serves for the version you specify, matching what `helm install` from the repository would deploy. + +1. Add the Redis repository, if you haven't already. + + ```sh + helm repo add https://helm.redis.io + ``` + +2. Pull and unpack the chart. This creates a `redis-enterprise-operator` directory in your current location. + + ```sh + helm pull /redis-enterprise-operator --version --untar + ``` + +3. Install the Helm chart from the local directory. + + ```sh + helm install ./redis-enterprise-operator \ + --namespace \ + --create-namespace + ``` + +**Download the source code.** Alternatively, download the chart source from GitHub. + 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 \ - --namespace \ - --create-namespace -``` + ```sh + helm install \ + --namespace \ + --create-namespace + ``` To install with Openshift, add `--set openshift.mode=true`. diff --git a/content/operate/kubernetes/8.0/deployment/helm.md b/content/operate/kubernetes/8.0/deployment/helm.md index e21ea5f031..3e273ec43b 100644 --- a/content/operate/kubernetes/8.0/deployment/helm.md +++ b/content/operate/kubernetes/8.0/deployment/helm.md @@ -55,15 +55,41 @@ To monitor the installation add the `--debug` flag. The installation runs severa ### Install from local directory +If you need a local copy of the chart, for example to inspect it or customize values, use one of the following methods. + +**Pull the packaged chart (recommended).** `helm pull` fetches the exact packaged chart the Helm repository serves for the version you specify, matching what `helm install` from the repository would deploy. + +1. Add the Redis repository, if you haven't already. + + ```sh + helm repo add https://helm.redis.io + ``` + +2. Pull and unpack the chart. This creates a `redis-enterprise-operator` directory in your current location. + + ```sh + helm pull /redis-enterprise-operator --version --untar + ``` + +3. Install the Helm chart from the local directory. + + ```sh + helm install ./redis-enterprise-operator \ + --namespace \ + --create-namespace + ``` + +**Download the source code.** Alternatively, download the chart source from GitHub. + 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 \ - --namespace \ - --create-namespace -``` + ```sh + helm install \ + --namespace \ + --create-namespace + ``` To install with Openshift, add `--set openshift.mode=true`. diff --git a/content/operate/kubernetes/deployment/helm.md b/content/operate/kubernetes/deployment/helm.md index 1950057932..0de7e342ed 100644 --- a/content/operate/kubernetes/deployment/helm.md +++ b/content/operate/kubernetes/deployment/helm.md @@ -63,15 +63,41 @@ To monitor the installation add the `--debug` flag. The installation runs severa ### Install from local directory +If you need a local copy of the chart, for example to inspect it or customize values, use one of the following methods. + +**Pull the packaged chart (recommended).** `helm pull` fetches the exact packaged chart the Helm repository serves for the version you specify, matching what `helm install` from the repository would deploy. + +1. Add the Redis repository, if you haven't already. + + ```sh + helm repo add https://helm.redis.io + ``` + +2. Pull and unpack the chart. This creates a `redis-enterprise-operator` directory in your current location. + + ```sh + helm pull /redis-enterprise-operator --version --untar + ``` + +3. Install the Helm chart from the local directory. + + ```sh + helm install ./redis-enterprise-operator \ + --namespace \ + --create-namespace + ``` + +**Download the source code.** Alternatively, download the chart source from GitHub. + 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 \ - --namespace \ - --create-namespace -``` + ```sh + helm install \ + --namespace \ + --create-namespace + ``` To install with Openshift, add `--set openshift.mode=true`.