Skip to content

Commit 251f45f

Browse files
update example to use 7.22.0-7 (#1658)
1 parent 89df93c commit 251f45f

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

content/operate/kubernetes/deployment/container-images.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The information below will help you track and configure where your deployments p
3939

4040
{{< note >}}
4141
**IMPORTANT**
42-
* 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).
42+
* 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).
4343
* A specific operator version only supports a specific Redis Enterprise version. Other combinations of operator and Redis Enterprise versions are **not supported**.
4444
{{< /note >}}
4545

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

9898
```sh
9999
PRIVATE_REPO=...your repo...
100-
RS_VERSION=7.2.4-64
101-
OPERATOR_VERSION=7.2.4-7
100+
RS_VERSION=7.22.0-28
101+
OPERATOR_VERSION=7.22.0-7
102102
docker pull redislabs/redis:${RS_VERSION}
103103
docker pull redislabs/operator:${OPERATOR_VERSION}
104104
docker pull redislabs/k8s-controller:${OPERATOR_VERSION}
@@ -132,7 +132,7 @@ In the operator deployment file, 'containers:image' should point to the same rep
132132
${PRIVATE_REPO}/redislabs/operator:${OPERATOR_VERSION}
133133
```
134134

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

137137
```YAML
138138
apiVersion: apps/v1
@@ -152,7 +152,7 @@ spec:
152152
serviceAccountName: redis-enterprise-operator
153153
containers:
154154
- name: redis-enterprise-operator
155-
image: gcr.io/yourproject/redislabs/operator:7.2.4-7
155+
image: gcr.io/yourproject/redislabs/operator:7.22.0-7
156156
...
157157
```
158158

@@ -201,15 +201,15 @@ spec:
201201
redisEnterpriseImageSpec:
202202
imagePullPolicy: IfNotPresent
203203
repository: gcr.io/yourproject/redislabs/redis
204-
versionTag: 7.2.4-64
204+
versionTag: 7.22.0-28
205205
bootstrapperImageSpec:
206206
imagePullPolicy: IfNotPresent
207207
repository: gcr.io/yourproject/redislabs/operator
208-
versionTag: 7.2.4-7
208+
versionTag: 7.22.0-7
209209
redisEnterpriseServicesRiggerImageSpec:
210210
imagePullPolicy: IfNotPresent
211211
repository: gcr.io/yourproject/redislabs/k8s-controller
212-
versionTag: 7.2.4-7
212+
versionTag: 7.22.0-7
213213
```
214214

215215
If your private container registry requires pull secrets, you must add `pullSecrets`
@@ -227,15 +227,15 @@ spec:
227227
redisEnterpriseImageSpec:
228228
imagePullPolicy: IfNotPresent
229229
repository: gcr.io/yourproject/redislabs/redis
230-
versionTag: 7.2.4-64
230+
versionTag: 7.22.0-28
231231
bootstrapperImageSpec:
232232
imagePullPolicy: IfNotPresent
233233
repository: gcr.io/yourproject/redislabs/operator
234-
versionTag: 7.2.4-7
234+
versionTag: 7.22.0-7
235235
redisEnterpriseServicesRiggerImageSpec:
236236
imagePullPolicy: IfNotPresent
237237
repository: gcr.io/yourproject/redislabs/k8s-controller
238-
versionTag: 7.2.4-7
238+
versionTag: 7.22.0-7
239239
```
240240

241241
## Rate limiting with DockerHub

0 commit comments

Comments
 (0)