From 77e9c6a83612386201ef54176f4e03dae4f3af67 Mon Sep 17 00:00:00 2001 From: Kaitlyn Michael Date: Tue, 9 Jun 2026 15:14:32 -0500 Subject: [PATCH] fix helm repo name --- .../kubernetes/7.22/deployment/helm.md | 17 +++++++-------- .../kubernetes/7.22/upgrade/openshift-cli.md | 4 ++-- .../kubernetes/7.8.6/deployment/helm.md | 7 +++---- .../kubernetes/8.0.18/deployment/helm.md | 21 +++++++++---------- .../8.0.18/upgrade/openshift-cli.md | 4 ++-- .../operate/kubernetes/8.0/deployment/helm.md | 17 +++++++-------- .../kubernetes/8.0/upgrade/openshift-cli.md | 4 ++-- content/operate/kubernetes/deployment/helm.md | 21 +++++++++---------- .../kubernetes/upgrade/openshift-cli.md | 4 ++-- 9 files changed, 47 insertions(+), 52 deletions(-) diff --git a/content/operate/kubernetes/7.22/deployment/helm.md b/content/operate/kubernetes/7.22/deployment/helm.md index 3d496cbd17..972f9ea997 100644 --- a/content/operate/kubernetes/7.22/deployment/helm.md +++ b/content/operate/kubernetes/7.22/deployment/helm.md @@ -26,7 +26,6 @@ If you suspect your file descriptor limits are below 100,000, you must either ma The steps below use the following placeholders to indicate command line parameters you must provide: -- `` is the name of the repo holding your Helm chart (example: `redis`). - `` is the name you give a specific installation of the Helm chart (example: `my-redis-enterprise-operator`) - `` is the version of the Helm chart you are installing (example: `7.8.2-2`) - `` is the name of the new namespace the Redis operator will run in (example: `ns1`) @@ -37,13 +36,13 @@ The steps below use the following placeholders to indicate command line paramete 1. Add the Redis repository. ```sh - helm repo add https://helm.redis.io + helm repo add redis https://helm.redis.io ``` 2. Install the Helm chart into a new namespace. ```sh -helm install /redis-enterprise-operator \ +helm install redis/redis-enterprise-operator \ --version \ --namespace \ --create-namespace @@ -71,12 +70,12 @@ To monitor the installation add the `--debug` flag. The installation runs severa ### Specify values during install -1. View configurable values with `helm show values /redis-enterprise-operator`. +1. View configurable values with `helm show values redis/redis-enterprise-operator`. 2. Install the Helm chart, overriding specific value defaults using `--set`. ```sh -helm install /redis-enterprise-operator \ +helm install redis/redis-enterprise-operator \ --version \ --namespace \ --create-namespace @@ -86,14 +85,14 @@ helm install /redis-enterprise-operator \ ### Install with values file -1. View configurable values with `helm show values /redis-enterprise-operator`. +1. View configurable values with `helm show values redis/redis-enterprise-operator`. 2. Create a YAML file to specify the values you want to configure. 3. Install the chart with the `--values` option. ```sh -helm install /redis-enterprise-operator \ +helm install redis/redis-enterprise-operator \ --version \ --namespace \ --create-namespace \ @@ -109,7 +108,7 @@ To migrate an existing non-Helm installation of the Redis Enterprise operator to 2. [Install](#install) the Helm chart adding the `--take-ownership` flag: ```sh - helm install /redis-enterprise-operator --take-ownership + helm install redis/redis-enterprise-operator --take-ownership ``` - The `--take-ownership` flag is available with Helm versions 3.18 or later. @@ -129,7 +128,7 @@ To migrate an existing non-Helm installation of the Redis Enterprise operator to To upgrade an existing Helm chart installation: ```sh -helm upgrade /redis-enterprise-operator --version +helm upgrade redis/redis-enterprise-operator --version ``` You can also upgrade from a local directory: diff --git a/content/operate/kubernetes/7.22/upgrade/openshift-cli.md b/content/operate/kubernetes/7.22/upgrade/openshift-cli.md index 87d2991901..b99240a33d 100644 --- a/content/operate/kubernetes/7.22/upgrade/openshift-cli.md +++ b/content/operate/kubernetes/7.22/upgrade/openshift-cli.md @@ -65,14 +65,14 @@ If you installed the Redis Enterprise operator using Helm charts on OpenShift, y To upgrade using Helm on OpenShift: ```sh -helm upgrade /redis-enterprise-operator --version \ +helm upgrade redis/redis-enterprise-operator --version \ --set openshift.mode=true ``` For example: ```sh -helm upgrade my-redis-enterprise /redis-enterprise-operator --version 7.8.2-2 \ +helm upgrade my-redis-enterprise redis/redis-enterprise-operator --version 7.8.2-2 \ --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..3d732d9497 100644 --- a/content/operate/kubernetes/7.8.6/deployment/helm.md +++ b/content/operate/kubernetes/7.8.6/deployment/helm.md @@ -26,7 +26,6 @@ Helm charts provide a simple way to install the Redis Enterprise for Kubernetes The steps below use the following placeholders to indicate command line parameters you must provide: -- `` is the name of the repo holding your Helm chart (example: `redis`). - `` is the name you give a specific installation of the Helm chart (example: `my-redis-enterprise-operator`) - `` is the version of the Helm chart you are installing (example: `7.8.2-2`) - `` is the name of the new namespace the Redis operator will run in (example: `ns1`) @@ -37,7 +36,7 @@ The steps below use the following placeholders to indicate command line paramete 1. Add the Redis repository. ```sh -helm repo add https://helm.redis.io +helm repo add redis https://helm.redis.io ``` 2. Install the Helm chart into a new namespace. @@ -71,7 +70,7 @@ To monitor the installation add the `--debug` flag. The installation runs severa ### Specify values during install -1. View configurable values with `helm show values /`. +1. View configurable values with `helm show values redis/`. 2. Install the Helm chart, overriding specific value defaults using `--set`. @@ -86,7 +85,7 @@ helm install redis/redis-enterprise-operator \ ### Install with values file -1. View configurable values with `helm show values /`. +1. View configurable values with `helm show values redis/`. 2. Create a YAML file to specify the values you want to configure. diff --git a/content/operate/kubernetes/8.0.18/deployment/helm.md b/content/operate/kubernetes/8.0.18/deployment/helm.md index 1ac11e54e2..018af8d845 100644 --- a/content/operate/kubernetes/8.0.18/deployment/helm.md +++ b/content/operate/kubernetes/8.0.18/deployment/helm.md @@ -26,7 +26,6 @@ If you suspect your file descriptor limits are below 100,000, you must either ma The steps below use the following placeholders to indicate command line parameters you must provide: -- `` is the name of the repo holding your Helm chart (example: `redis`). - `` is the name you give a specific installation of the Helm chart (example: `my-redis-enterprise-operator`) - `` is the version of the Helm chart you are installing (example: `7.8.6-2`). Verify that the version you specify is listed in the [Redis Helm repository](https://helm.redis.io/). Using an invalid version number causes installation failures. - `` is the name of the new namespace the Redis operator will run in (example: `ns1`) @@ -46,13 +45,13 @@ Below are several ways to install the operator using Helm. To create the REC in 1. Add the Redis repository. ```sh - helm repo add https://helm.redis.io + helm repo add redis https://helm.redis.io ``` 2. Install the Helm chart into a new namespace. ```sh -helm install /redis-enterprise-operator \ +helm install redis/redis-enterprise-operator \ --version \ --namespace \ --create-namespace @@ -80,12 +79,12 @@ To monitor the installation add the `--debug` flag. The installation runs severa ### Specify values during install -1. View configurable values with `helm show values /redis-enterprise-operator`. +1. View configurable values with `helm show values redis/redis-enterprise-operator`. 2. Install the Helm chart, overriding specific value defaults using `--set`. ```sh -helm install /redis-enterprise-operator \ +helm install redis/redis-enterprise-operator \ --version \ --namespace \ --create-namespace @@ -95,14 +94,14 @@ helm install /redis-enterprise-operator \ ### Install with values file -1. View configurable values with `helm show values /redis-enterprise-operator`. +1. View configurable values with `helm show values redis/redis-enterprise-operator`. 2. Create a YAML file to specify the values you want to configure. 3. Install the chart with the `--values` option. ```sh -helm install /redis-enterprise-operator \ +helm install redis/redis-enterprise-operator \ --version \ --namespace \ --create-namespace \ @@ -135,7 +134,7 @@ The chart can create the `RedisEnterpriseCluster` (REC) custom resource at insta 2. Install the chart with the values file. ```sh - helm install /redis-enterprise-operator \ + helm install redis/redis-enterprise-operator \ --version \ --namespace \ --create-namespace \ @@ -163,7 +162,7 @@ To update or uninstall an REC created by the chart, see [Update an REC created b To upgrade an existing Helm chart installation: ```sh -helm upgrade /redis-enterprise-operator --version +helm upgrade redis/redis-enterprise-operator --version ``` You can also upgrade from a local directory: @@ -214,7 +213,7 @@ If you used `cluster.create: true`, change REC settings by editing `cluster.spec 2. Apply the changes. ```sh - helm upgrade /redis-enterprise-operator \ + helm upgrade redis/redis-enterprise-operator \ --namespace \ --values ``` @@ -268,7 +267,7 @@ To migrate an existing non-Helm installation of the Redis Enterprise operator to 2. [Install](#install-the-operator) the Helm chart adding the `--take-ownership` flag: ```sh - helm install /redis-enterprise-operator --take-ownership + helm install redis/redis-enterprise-operator --take-ownership ``` - The `--take-ownership` flag is available with Helm versions 3.18 or later. diff --git a/content/operate/kubernetes/8.0.18/upgrade/openshift-cli.md b/content/operate/kubernetes/8.0.18/upgrade/openshift-cli.md index 3fec845af5..9621907687 100644 --- a/content/operate/kubernetes/8.0.18/upgrade/openshift-cli.md +++ b/content/operate/kubernetes/8.0.18/upgrade/openshift-cli.md @@ -75,14 +75,14 @@ If you installed the Redis Enterprise operator using Helm charts on OpenShift, y To upgrade using Helm on OpenShift: ```sh -helm upgrade /redis-enterprise-operator --version \ +helm upgrade redis/redis-enterprise-operator --version \ --set openshift.mode=true ``` For example: ```sh -helm upgrade my-redis-enterprise /redis-enterprise-operator --version 7.8.2-2 \ +helm upgrade my-redis-enterprise redis/redis-enterprise-operator --version 7.8.2-2 \ --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..8bab535b44 100644 --- a/content/operate/kubernetes/8.0/deployment/helm.md +++ b/content/operate/kubernetes/8.0/deployment/helm.md @@ -26,7 +26,6 @@ If you suspect your file descriptor limits are below 100,000, you must either ma The steps below use the following placeholders to indicate command line parameters you must provide: -- `` is the name of the repo holding your Helm chart (example: `redis`). - `` is the name you give a specific installation of the Helm chart (example: `my-redis-enterprise-operator`) - `` is the version of the Helm chart you are installing (example: `7.8.6-2`). Verify that the version you specify is listed in the [Redis Helm repository](https://helm.redis.io/). Using an invalid version number causes installation failures. - `` is the name of the new namespace the Redis operator will run in (example: `ns1`) @@ -37,13 +36,13 @@ The steps below use the following placeholders to indicate command line paramete 1. Add the Redis repository. ```sh - helm repo add https://helm.redis.io + helm repo add redis https://helm.redis.io ``` 2. Install the Helm chart into a new namespace. ```sh -helm install /redis-enterprise-operator \ +helm install redis/redis-enterprise-operator \ --version \ --namespace \ --create-namespace @@ -71,12 +70,12 @@ To monitor the installation add the `--debug` flag. The installation runs severa ### Specify values during install -1. View configurable values with `helm show values /redis-enterprise-operator`. +1. View configurable values with `helm show values redis/redis-enterprise-operator`. 2. Install the Helm chart, overriding specific value defaults using `--set`. ```sh -helm install /redis-enterprise-operator \ +helm install redis/redis-enterprise-operator \ --version \ --namespace \ --create-namespace @@ -86,14 +85,14 @@ helm install /redis-enterprise-operator \ ### Install with values file -1. View configurable values with `helm show values /redis-enterprise-operator`. +1. View configurable values with `helm show values redis/redis-enterprise-operator`. 2. Create a YAML file to specify the values you want to configure. 3. Install the chart with the `--values` option. ```sh -helm install /redis-enterprise-operator \ +helm install redis/redis-enterprise-operator \ --version \ --namespace \ --create-namespace \ @@ -109,7 +108,7 @@ To migrate an existing non-Helm installation of the Redis Enterprise operator to 2. [Install](#install) the Helm chart adding the `--take-ownership` flag: ```sh - helm install /redis-enterprise-operator --take-ownership + helm install redis/redis-enterprise-operator --take-ownership ``` - The `--take-ownership` flag is available with Helm versions 3.18 or later. @@ -129,7 +128,7 @@ To migrate an existing non-Helm installation of the Redis Enterprise operator to To upgrade an existing Helm chart installation: ```sh -helm upgrade /redis-enterprise-operator --version +helm upgrade redis/redis-enterprise-operator --version ``` You can also upgrade from a local directory: diff --git a/content/operate/kubernetes/8.0/upgrade/openshift-cli.md b/content/operate/kubernetes/8.0/upgrade/openshift-cli.md index a5d2a4e93b..451ad7c664 100644 --- a/content/operate/kubernetes/8.0/upgrade/openshift-cli.md +++ b/content/operate/kubernetes/8.0/upgrade/openshift-cli.md @@ -75,14 +75,14 @@ If you installed the Redis Enterprise operator using Helm charts on OpenShift, y To upgrade using Helm on OpenShift: ```sh -helm upgrade /redis-enterprise-operator --version \ +helm upgrade redis/redis-enterprise-operator --version \ --set openshift.mode=true ``` For example: ```sh -helm upgrade my-redis-enterprise /redis-enterprise-operator --version 7.8.2-2 \ +helm upgrade my-redis-enterprise redis/redis-enterprise-operator --version 7.8.2-2 \ --set openshift.mode=true ``` diff --git a/content/operate/kubernetes/deployment/helm.md b/content/operate/kubernetes/deployment/helm.md index 1950057932..5c91199c10 100644 --- a/content/operate/kubernetes/deployment/helm.md +++ b/content/operate/kubernetes/deployment/helm.md @@ -25,7 +25,6 @@ If you suspect your file descriptor limits are below 100,000, you must either ma The steps below use the following placeholders to indicate command line parameters you must provide: -- `` is the name of the repo holding your Helm chart (example: `redis`). - `` is the name you give a specific installation of the Helm chart (example: `my-redis-enterprise-operator`) - `` is the version of the Helm chart you are installing (example: `7.8.6-2`). Verify that the version you specify is listed in the [Redis Helm repository](https://helm.redis.io/). Using an invalid version number causes installation failures. - `` is the name of the new namespace the Redis operator will run in (example: `ns1`) @@ -45,13 +44,13 @@ Below are several ways to install the operator using Helm. To create the REC in 1. Add the Redis repository. ```sh - helm repo add https://helm.redis.io + helm repo add redis https://helm.redis.io ``` 2. Install the Helm chart into a new namespace. ```sh -helm install /redis-enterprise-operator \ +helm install redis/redis-enterprise-operator \ --version \ --namespace \ --create-namespace @@ -79,12 +78,12 @@ To monitor the installation add the `--debug` flag. The installation runs severa ### Specify values during install -1. View configurable values with `helm show values /redis-enterprise-operator`. +1. View configurable values with `helm show values redis/redis-enterprise-operator`. 2. Install the Helm chart, overriding specific value defaults using `--set`. ```sh -helm install /redis-enterprise-operator \ +helm install redis/redis-enterprise-operator \ --version \ --namespace \ --create-namespace @@ -94,14 +93,14 @@ helm install /redis-enterprise-operator \ ### Install with values file -1. View configurable values with `helm show values /redis-enterprise-operator`. +1. View configurable values with `helm show values redis/redis-enterprise-operator`. 2. Create a YAML file to specify the values you want to configure. 3. Install the chart with the `--values` option. ```sh -helm install /redis-enterprise-operator \ +helm install redis/redis-enterprise-operator \ --version \ --namespace \ --create-namespace \ @@ -134,7 +133,7 @@ The chart can create the `RedisEnterpriseCluster` (REC) custom resource at insta 2. Install the chart with the values file. ```sh - helm install /redis-enterprise-operator \ + helm install redis/redis-enterprise-operator \ --version \ --namespace \ --create-namespace \ @@ -162,7 +161,7 @@ To update or uninstall an REC created by the chart, see [Update an REC created b To upgrade an existing Helm chart installation: ```sh -helm upgrade /redis-enterprise-operator --version +helm upgrade redis/redis-enterprise-operator --version ``` You can also upgrade from a local directory: @@ -213,7 +212,7 @@ If you used `cluster.create: true`, change REC settings by editing `cluster.spec 2. Apply the changes. ```sh - helm upgrade /redis-enterprise-operator \ + helm upgrade redis/redis-enterprise-operator \ --namespace \ --values ``` @@ -267,7 +266,7 @@ To migrate an existing non-Helm installation of the Redis Enterprise operator to 2. [Install](#install-the-operator) the Helm chart adding the `--take-ownership` flag: ```sh - helm install /redis-enterprise-operator --take-ownership + helm install redis/redis-enterprise-operator --take-ownership ``` - The `--take-ownership` flag is available with Helm versions 3.18 or later. diff --git a/content/operate/kubernetes/upgrade/openshift-cli.md b/content/operate/kubernetes/upgrade/openshift-cli.md index 8474ff8857..c9433d6819 100644 --- a/content/operate/kubernetes/upgrade/openshift-cli.md +++ b/content/operate/kubernetes/upgrade/openshift-cli.md @@ -74,14 +74,14 @@ If you installed the Redis Enterprise operator using Helm charts on OpenShift, y To upgrade using Helm on OpenShift: ```sh -helm upgrade /redis-enterprise-operator --version \ +helm upgrade redis/redis-enterprise-operator --version \ --set openshift.mode=true ``` For example: ```sh -helm upgrade my-redis-enterprise /redis-enterprise-operator --version 7.8.2-2 \ +helm upgrade my-redis-enterprise redis/redis-enterprise-operator --version 7.8.2-2 \ --set openshift.mode=true ```