Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions content/operate/kubernetes/7.22/deployment/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

- `<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`)
Expand All @@ -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 <repo-name> https://helm.redis.io
helm repo add redis https://helm.redis.io
```

2. Install the Helm chart into a new namespace.

```sh
helm install <release-name> <repo-name>/redis-enterprise-operator \
helm install <release-name> redis/redis-enterprise-operator \
--version <chart-version> \
--namespace <namespace-name> \
--create-namespace
Expand Down Expand Up @@ -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 <repo-name>/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 <operator-name> <repo-name>/redis-enterprise-operator \
helm install <operator-name> redis/redis-enterprise-operator \
--version <chart-version> \
--namespace <namespace-name> \
--create-namespace
Expand All @@ -86,14 +85,14 @@ helm install <operator-name> <repo-name>/redis-enterprise-operator \

### Install with values file

1. View configurable values with `helm show values <repo-name>/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 <operator-name> <repo-name>/redis-enterprise-operator \
helm install <operator-name> redis/redis-enterprise-operator \
--version <chart-version> \
--namespace <namespace-name> \
--create-namespace \
Expand All @@ -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 <release-name> <repo-name>/redis-enterprise-operator --take-ownership
helm install <release-name> redis/redis-enterprise-operator --take-ownership
```

- The `--take-ownership` flag is available with Helm versions 3.18 or later.
Expand All @@ -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 <release-name> <repo-name>/redis-enterprise-operator --version <chart-version>
helm upgrade <release-name> redis/redis-enterprise-operator --version <chart-version>
```

You can also upgrade from a local directory:
Expand Down
4 changes: 2 additions & 2 deletions content/operate/kubernetes/7.22/upgrade/openshift-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <release-name> <repo-name>/redis-enterprise-operator --version <chart-version> \
helm upgrade <release-name> redis/redis-enterprise-operator --version <chart-version> \
--set openshift.mode=true
```

For example:

```sh
helm upgrade my-redis-enterprise <repo-name>/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
```

Expand Down
7 changes: 3 additions & 4 deletions content/operate/kubernetes/7.8.6/deployment/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

- `<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`)
Expand All @@ -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 <repo-name> https://helm.redis.io
helm repo add redis https://helm.redis.io
```

2. Install the Helm chart into a new namespace.
Expand Down Expand Up @@ -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 <repo-name>/<chart-name>`.
1. View configurable values with `helm show values redis/<chart-name>`.

2. Install the Helm chart, overriding specific value defaults using `--set`.

Expand All @@ -86,7 +85,7 @@ helm install <operator-name> redis/redis-enterprise-operator \

### Install with values file

1. View configurable values with `helm show values <repo-name>/<chart-name>`.
1. View configurable values with `helm show values redis/<chart-name>`.

2. Create a YAML file to specify the values you want to configure.

Expand Down
21 changes: 10 additions & 11 deletions content/operate/kubernetes/8.0.18/deployment/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

- `<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.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.
- `<namespace-name>` is the name of the new namespace the Redis operator will run in (example: `ns1`)
Expand All @@ -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 <repo-name> https://helm.redis.io
helm repo add redis https://helm.redis.io
```

2. Install the Helm chart into a new namespace.

```sh
helm install <release-name> <repo-name>/redis-enterprise-operator \
helm install <release-name> redis/redis-enterprise-operator \
--version <chart-version> \
--namespace <namespace-name> \
--create-namespace
Expand Down Expand Up @@ -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 <repo-name>/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 <release-name> <repo-name>/redis-enterprise-operator \
helm install <release-name> redis/redis-enterprise-operator \
--version <chart-version> \
--namespace <namespace-name> \
--create-namespace
Expand All @@ -95,14 +94,14 @@ helm install <release-name> <repo-name>/redis-enterprise-operator \

### Install with values file

1. View configurable values with `helm show values <repo-name>/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 <release-name> <repo-name>/redis-enterprise-operator \
helm install <release-name> redis/redis-enterprise-operator \
--version <chart-version> \
--namespace <namespace-name> \
--create-namespace \
Expand Down Expand Up @@ -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 <release-name> <repo-name>/redis-enterprise-operator \
helm install <release-name> redis/redis-enterprise-operator \
--version <chart-version> \
--namespace <namespace-name> \
--create-namespace \
Expand Down Expand Up @@ -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 <release-name> <repo-name>/redis-enterprise-operator --version <chart-version>
helm upgrade <release-name> redis/redis-enterprise-operator --version <chart-version>
```

You can also upgrade from a local directory:
Expand Down Expand Up @@ -214,7 +213,7 @@ If you used `cluster.create: true`, change REC settings by editing `cluster.spec
2. Apply the changes.

```sh
helm upgrade <release-name> <repo-name>/redis-enterprise-operator \
helm upgrade <release-name> redis/redis-enterprise-operator \
--namespace <namespace-name> \
--values <path-to-values-file>
```
Expand Down Expand Up @@ -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 <release-name> <repo-name>/redis-enterprise-operator --take-ownership
helm install <release-name> redis/redis-enterprise-operator --take-ownership
```

- The `--take-ownership` flag is available with Helm versions 3.18 or later.
Expand Down
4 changes: 2 additions & 2 deletions content/operate/kubernetes/8.0.18/upgrade/openshift-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <release-name> <repo-name>/redis-enterprise-operator --version <chart-version> \
helm upgrade <release-name> redis/redis-enterprise-operator --version <chart-version> \
--set openshift.mode=true
```

For example:

```sh
helm upgrade my-redis-enterprise <repo-name>/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
```

Expand Down
17 changes: 8 additions & 9 deletions content/operate/kubernetes/8.0/deployment/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

- `<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.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.
- `<namespace-name>` is the name of the new namespace the Redis operator will run in (example: `ns1`)
Expand All @@ -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 <repo-name> https://helm.redis.io
helm repo add redis https://helm.redis.io
```

2. Install the Helm chart into a new namespace.

```sh
helm install <release-name> <repo-name>/redis-enterprise-operator \
helm install <release-name> redis/redis-enterprise-operator \
--version <chart-version> \
--namespace <namespace-name> \
--create-namespace
Expand Down Expand Up @@ -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 <repo-name>/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 <operator-name> <repo-name>/redis-enterprise-operator \
helm install <operator-name> redis/redis-enterprise-operator \
--version <chart-version> \
--namespace <namespace-name> \
--create-namespace
Expand All @@ -86,14 +85,14 @@ helm install <operator-name> <repo-name>/redis-enterprise-operator \

### Install with values file

1. View configurable values with `helm show values <repo-name>/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 <operator-name> <repo-name>/redis-enterprise-operator \
helm install <operator-name> redis/redis-enterprise-operator \
--version <chart-version> \
--namespace <namespace-name> \
--create-namespace \
Expand All @@ -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 <release-name> <repo-name>/redis-enterprise-operator --take-ownership
helm install <release-name> redis/redis-enterprise-operator --take-ownership
```

- The `--take-ownership` flag is available with Helm versions 3.18 or later.
Expand All @@ -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 <release-name> <repo-name>/redis-enterprise-operator --version <chart-version>
helm upgrade <release-name> redis/redis-enterprise-operator --version <chart-version>
```

You can also upgrade from a local directory:
Expand Down
4 changes: 2 additions & 2 deletions content/operate/kubernetes/8.0/upgrade/openshift-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <release-name> <repo-name>/redis-enterprise-operator --version <chart-version> \
helm upgrade <release-name> redis/redis-enterprise-operator --version <chart-version> \
--set openshift.mode=true
```

For example:

```sh
helm upgrade my-redis-enterprise <repo-name>/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
```

Expand Down
Loading
Loading