Skip to content

K8s: update example to use 7.22.0-7 #1658

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

Merged
merged 1 commit into from
Jun 4, 2025
Merged
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
22 changes: 11 additions & 11 deletions content/operate/kubernetes/deployment/container-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The information below will help you track and configure where your deployments p

{{< note >}}
**IMPORTANT**
* Each version of the Redis Enterprise operator is mapped to a specific version of Redis Enterprise Software. The semantic versions always match (for example, 7.2.4), although the specific release numbers may be different (for example, 7.2.4-7 is the operator version for Redis Enterprise Software 7.2.4-64).
* Each version of the Redis Enterprise operator is mapped to a specific version of Redis Enterprise Software. The semantic versions always match (for example, 7.22.0), although the specific release numbers may be different (for example, 7.22.0-7 is the operator version for Redis Enterprise Software 7.22.0-28).
* A specific operator version only supports a specific Redis Enterprise version. Other combinations of operator and Redis Enterprise versions are **not supported**.
{{< /note >}}

Expand Down Expand Up @@ -97,8 +97,8 @@ The example below shows the commands for pushing the images for Redis Enterprise

```sh
PRIVATE_REPO=...your repo...
RS_VERSION=7.2.4-64
OPERATOR_VERSION=7.2.4-7
RS_VERSION=7.22.0-28
OPERATOR_VERSION=7.22.0-7
docker pull redislabs/redis:${RS_VERSION}
docker pull redislabs/operator:${OPERATOR_VERSION}
docker pull redislabs/k8s-controller:${OPERATOR_VERSION}
Expand Down Expand Up @@ -132,7 +132,7 @@ In the operator deployment file, 'containers:image' should point to the same rep
${PRIVATE_REPO}/redislabs/operator:${OPERATOR_VERSION}
```

The example below specifies a 7.2.4-7 operator image in a Google Container Registry:
The example below specifies a 7.22.0-7 operator image in a Google Container Registry:

```YAML
apiVersion: apps/v1
Expand All @@ -152,7 +152,7 @@ spec:
serviceAccountName: redis-enterprise-operator
containers:
- name: redis-enterprise-operator
image: gcr.io/yourproject/redislabs/operator:7.2.4-7
image: gcr.io/yourproject/redislabs/operator:7.22.0-7
...
```

Expand Down Expand Up @@ -201,15 +201,15 @@ spec:
redisEnterpriseImageSpec:
imagePullPolicy: IfNotPresent
repository: gcr.io/yourproject/redislabs/redis
versionTag: 7.2.4-64
versionTag: 7.22.0-28
bootstrapperImageSpec:
imagePullPolicy: IfNotPresent
repository: gcr.io/yourproject/redislabs/operator
versionTag: 7.2.4-7
versionTag: 7.22.0-7
redisEnterpriseServicesRiggerImageSpec:
imagePullPolicy: IfNotPresent
repository: gcr.io/yourproject/redislabs/k8s-controller
versionTag: 7.2.4-7
versionTag: 7.22.0-7
```

If your private container registry requires pull secrets, you must add `pullSecrets`
Expand All @@ -227,15 +227,15 @@ spec:
redisEnterpriseImageSpec:
imagePullPolicy: IfNotPresent
repository: gcr.io/yourproject/redislabs/redis
versionTag: 7.2.4-64
versionTag: 7.22.0-28
bootstrapperImageSpec:
imagePullPolicy: IfNotPresent
repository: gcr.io/yourproject/redislabs/operator
versionTag: 7.2.4-7
versionTag: 7.22.0-7
redisEnterpriseServicesRiggerImageSpec:
imagePullPolicy: IfNotPresent
repository: gcr.io/yourproject/redislabs/k8s-controller
versionTag: 7.2.4-7
versionTag: 7.22.0-7
```

## Rate limiting with DockerHub
Expand Down