Skip to content

Commit 142e72d

Browse files
authored
Merge pull request #129 from RedisLabs/6.0.6-11
Release 6.0.6-11
2 parents b2c3f86 + f27aa12 commit 142e72d

13 files changed

+31
-34
lines changed

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ This page describe how to deploy Redis Enterprise on Kubernetes using the Redis
2626
The following are the images and tags for this release:
2727
| Component | k8s | Openshift |
2828
| --- | --- | --- |
29-
| Redis Enterprise | `redislabs/redis:6.0.6-35` | `redislabs/redis:6.0.6-35.rhel7-openshift` |
30-
| Operator | `redislabs/operator:6.0.6-6` | `redislabs/operator:6.0.6-6.rhel7` |
31-
| Services Rigger | `redislabs/k8s-controller:6.0.6-6` | `redislabs/k8s-controller:6.0.6-6.rhel7` |
29+
| Redis Enterprise | `redislabs/redis:6.0.6-39` | `redislabs/redis:6.0.6-39.rhel7-openshift` |
30+
| Operator | `redislabs/operator:6.0.6-11` | `redislabs/operator:6.0.6-11.rhel7` |
31+
| Services Rigger | `redislabs/k8s-controller:6.0.6-11` | `redislabs/k8s-controller:6.0.6-11.rhel7` |
3232
> * RedHat certified images are available on [Redhat Catalog](https://access.redhat.com/containers/#/product/71f6d1bb3408bd0d) </br>
3333
3434

@@ -206,7 +206,7 @@ The operator deploys a `RedisEnterpriseCluster` with default configurations valu
206206
redisEnterpriseImageSpec:
207207
imagePullPolicy: IfNotPresent
208208
repository: redislabs/redis
209-
versionTag: 6.0.6-35
209+
versionTag: 6.0.6-39
210210
```
211211
212212
* Persistence
@@ -302,21 +302,21 @@ For example:
302302
redisEnterpriseImageSpec:
303303
imagePullPolicy: IfNotPresent
304304
repository: harbor.corp.local/redisenterprise/redis
305-
versionTag: 6.0.6-35
305+
versionTag: 6.0.6-39
306306
```
307307
308308
```yaml
309309
redisEnterpriseServicesRiggerImageSpec:
310310
imagePullPolicy: IfNotPresent
311311
repository: harbor.corp.local/redisenterprise/k8s-controller
312-
versionTag: 6.0.6-6
312+
versionTag: 6.0.6-11
313313
```
314314
315315
```yaml
316316
bootstrapperImageSpec:
317317
imagePullPolicy: IfNotPresent
318318
repository: harbor.corp.local/redisenterprise/operator
319-
versionTag: 6.0.6-6
319+
versionTag: 6.0.6-11
320320
```
321321
322322
In Operator Deployment spec (operator.yaml):
@@ -328,7 +328,7 @@ spec:
328328
spec:
329329
containers:
330330
- name: redis-enterprise-operator
331-
image: harbor.corp.local/redisenterprise/operator:6.0.6-6
331+
image: harbor.corp.local/redisenterprise/operator:6.0.6-11
332332
```
333333
334334
Image specification follow the [K8s Container schema](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.10/#container-v1-core).
@@ -377,7 +377,7 @@ spec:
377377
The Operator automates and simplifies the upgrade process.
378378
The Redis Enterprise Cluster Software, and the Redis Enterprise Operator for Kubernetes versions are tightly coupled and should be upgraded together.
379379
It is recommended to use the bundle.yaml to upgrade, as it loads all the relevant CRD documents for this version. If the updated CRDs are not loaded, the operator might fail.
380-
There are two ways to upgrade - either set 'autoUpgradeRedisEnterprise' within the Redis Enterprise Cluster Spec to instruct the operator to automatically upgrade to the compatible version, or specify the correct Redis Enterprise image manually using the versionTag attribute. The Redis Enterprise Version compatible with this release is 6.0.6-35
380+
There are two ways to upgrade - either set 'autoUpgradeRedisEnterprise' within the Redis Enterprise Cluster Spec to instruct the operator to automatically upgrade to the compatible version, or specify the correct Redis Enterprise image manually using the versionTag attribute. The Redis Enterprise version compatible with this release is 6.0.6-39
381381
382382
```yaml
383383
autoUpgradeRedisEnterprise: true
@@ -386,6 +386,5 @@ There are two ways to upgrade - either set 'autoUpgradeRedisEnterprise' within t
386386
Alternatively:
387387
```yaml
388388
RedisEnterpriseImageSpec:
389-
versionTag: redislabs/redis:6.0.6-35
389+
versionTag: redislabs/redis:6.0.6-39
390390
```
391-

admission.bundle.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ spec:
7575
serviceAccountName: redis-enterprise-admission
7676
containers:
7777
- name: admin
78-
image: redislabs/operator-internal:6.0.6-6
78+
image: redislabs/operator:6.0.6-11
7979
command:
8080
- /usr/local/bin/admission
8181
args:
@@ -106,7 +106,7 @@ spec:
106106
scheme: HTTPS
107107
initContainers:
108108
- name: admin-init
109-
image: redislabs/operator-internal:6.0.6-6
109+
image: redislabs/operator:6.0.6-11
110110
command:
111111
- /usr/local/bin/admission
112112
args:

admission.openshift.bundle.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ spec:
7575
serviceAccountName: redis-enterprise-admission
7676
containers:
7777
- name: admin
78-
image: redislabs/operator-internal:6.0.6-6.rhel7
78+
image: redislabs/operator:6.0.6-11.rhel7
7979
command:
8080
- /usr/local/bin/admission
8181
args:
@@ -106,7 +106,7 @@ spec:
106106
scheme: HTTPS
107107
initContainers:
108108
- name: admin-init
109-
image: redislabs/operator-internal:6.0.6-6.rhel7
109+
image: redislabs/operator:6.0.6-11.rhel7
110110
command:
111111
- /usr/local/bin/admission
112112
args:

admission/deployment.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
serviceAccountName: redis-enterprise-admission
1515
containers:
1616
- name: admin
17-
image: redislabs/operator-internal:6.0.6-6
17+
image: redislabs/operator:6.0.6-11
1818
command:
1919
- /usr/local/bin/admission
2020
args:
@@ -45,7 +45,7 @@ spec:
4545
scheme: HTTPS
4646
initContainers:
4747
- name: admin-init
48-
image: redislabs/operator-internal:6.0.6-6
48+
image: redislabs/operator:6.0.6-11
4949
command:
5050
- /usr/local/bin/admission
5151
args:
@@ -72,4 +72,3 @@ spec:
7272
requests:
7373
cpu: 100m
7474
memory: 256Mi
75-

admission/deployment_openshift.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
serviceAccountName: redis-enterprise-admission
1515
containers:
1616
- name: admin
17-
image: redislabs/operator-internal:6.0.6-6.rhel7
17+
image: redislabs/operator:6.0.6-11.rhel7
1818
command:
1919
- /usr/local/bin/admission
2020
args:
@@ -45,7 +45,7 @@ spec:
4545
scheme: HTTPS
4646
initContainers:
4747
- name: admin-init
48-
image: redislabs/operator-internal:6.0.6-6.rhel7
48+
image: redislabs/operator:6.0.6-11.rhel7
4949
command:
5050
- /usr/local/bin/admission
5151
args:
@@ -72,4 +72,3 @@ spec:
7272
requests:
7373
cpu: 100m
7474
memory: 256Mi
75-

bundle.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ spec:
115115
serviceAccountName: redis-enterprise-operator
116116
containers:
117117
- name: redis-enterprise-operator
118-
image: redislabs/operator:6.0.6-6
118+
image: redislabs/operator:6.0.6-11
119119
command:
120120
- redis-enterprise-operator
121121
imagePullPolicy: Always

openshift.bundle.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ spec:
131131
serviceAccount: redis-enterprise-operator
132132
containers:
133133
- name: redis-enterprise-operator
134-
image: redislabs/operator:6.0.6-6.rhel7
134+
image: redislabs/operator:6.0.6-11.rhel7
135135
securityContext:
136136
runAsUser: 1001
137137
command:

openshift/operator_rhel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
serviceAccount: redis-enterprise-operator
1616
containers:
1717
- name: redis-enterprise-operator
18-
image: redislabs/operator:6.0.6-6.rhel7
18+
image: redislabs/operator:6.0.6-11.rhel7
1919
securityContext:
2020
runAsUser: 1001
2121
command:

openshift/redis-enterprise-cluster_rhel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ spec:
1919
redisEnterpriseImageSpec:
2020
imagePullPolicy: IfNotPresent
2121
repository: redislabs/redis
22-
versionTag: 6.0.6-35.rhel7-openshift
22+
versionTag: 6.0.6-39.rhel7-openshift
2323

openshift/with_service_broker_rhel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ spec:
1111
redisEnterpriseImageSpec:
1212
imagePullPolicy: IfNotPresent
1313
repository: redislabs/redis
14-
versionTag: 6.0.6-35.rhel7-openshift
14+
versionTag: 6.0.6-39.rhel7-openshift

operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
serviceAccountName: redis-enterprise-operator
1616
containers:
1717
- name: redis-enterprise-operator
18-
image: redislabs/operator:6.0.6-6
18+
image: redislabs/operator:6.0.6-11
1919
command:
2020
- redis-enterprise-operator
2121
imagePullPolicy: Always

release_info.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
operatorVersion: 6.0.6-6
2-
rsVersion: 6.0.6-35
1+
operatorVersion: 6.0.6-11
2+
rsVersion: 6.0.6-39
33
serviceBrokerVersion: 78_4b9b17f

topics.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,21 +173,21 @@ For example:
173173
redisEnterpriseImageSpec:
174174
imagePullPolicy: IfNotPresent
175175
repository: harbor.corp.local/redisenterprise/redis
176-
versionTag: 6.0.6-35
176+
versionTag: 6.0.6-39
177177
```
178178

179179
```yaml
180180
redisEnterpriseServicesRiggerImageSpec:
181181
imagePullPolicy: IfNotPresent
182182
repository: harbor.corp.local/redisenterprise/k8s-controller
183-
versionTag: 6.0.6-6
183+
versionTag: 6.0.6-11
184184
```
185185

186186
```yaml
187187
bootstrapperImageSpec:
188188
imagePullPolicy: IfNotPresent
189189
repository: harbor.corp.local/redisenterprise/operator
190-
versionTag: 6.0.6-6
190+
versionTag: 6.0.6-11
191191
```
192192

193193
In Operator Deployment spec (operator.yaml):
@@ -200,7 +200,7 @@ spec:
200200
spec:
201201
containers:
202202
- name: redis-enterprise-operator
203-
image: harbor.corp.local/redisenterprise/operator:6.0.6-6
203+
image: harbor.corp.local/redisenterprise/operator:6.0.6-11
204204
```
205205

206206
Image specification follow the [K8s Container schema](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.10/#container-v1-core).
@@ -315,7 +315,7 @@ The finalizer name is `finalizer.redisenterprisedatabases.app.redislabs.com`.
315315
When a user requests the deletion of REDB (for example by running `kubectl delete redb <name>`), the following happens:
316316
1. K8s API adds `DeletionTimestamp` to the REDB resource.
317317
2. The Operator notices the `DeletionTimestamp`, and sends delete request to the RS API.
318-
3. When RS API the approves delete request, the operator removes the REDB finalizer.
318+
3. When RS API approves the delete request, the operator removes the REDB finalizer.
319319
4. K8s cleans up the REDB resource, now that it has no finalizers.
320320

321321
If for some reason the user ends up with an REDB resource that can't be deleted, because the finalizer can't be removed, they can remove the finalizer manually by editing the REDB resource.

0 commit comments

Comments
 (0)