Skip to content

Commit 74c0fb9

Browse files
authored
Merge pull request #209 from RedisLabs/6.2.8-15
promoting version 6.2.8-15
2 parents e7ee0a8 + f1ae95a commit 74c0fb9

File tree

9 files changed

+31
-28
lines changed

9 files changed

+31
-28
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ High level architecture and overview of the solution can be found [HERE](https:/
3232
The following are the images and tags for this release:
3333
| Component | k8s | Openshift |
3434
| --- | --- | --- |
35-
| Redis Enterprise | `redislabs/redis:6.2.8-53` | `redislabs/redis:6.2.8-53.rhel7-openshift` |
36-
| Operator | `redislabs/operator:6.2.8-11` | `redislabs/operator:6.2.8-11` |
37-
| Services Rigger | `redislabs/k8s-controller:6.2.8-11` | `redislabs/k8s-controller:6.2.8-11` |
35+
| Redis Enterprise | `redislabs/redis:6.2.8-64` | `redislabs/redis:6.2.8-64.rhel7-openshift` |
36+
| Operator | `redislabs/operator:6.2.8-15` | `redislabs/operator:6.2.8-15` |
37+
| Services Rigger | `redislabs/k8s-controller:6.2.8-15` | `redislabs/k8s-controller:6.2.8-15` |
3838
> * RedHat certified images are available on [Redhat Catalog](https://access.redhat.com/containers/#/product/71f6d1bb3408bd0d) </br>
3939
4040

@@ -381,7 +381,7 @@ The operator deploys a `RedisEnterpriseCluster` with default configurations valu
381381
redisEnterpriseImageSpec:
382382
imagePullPolicy: IfNotPresent
383383
repository: redislabs/redis
384-
versionTag: 6.2.8-53
384+
versionTag: 6.2.8-64
385385
```
386386
387387
* Persistence
@@ -483,21 +483,21 @@ For example:
483483
redisEnterpriseImageSpec:
484484
imagePullPolicy: IfNotPresent
485485
repository: harbor.corp.local/redisenterprise/redis
486-
versionTag: 6.2.8-53
486+
versionTag: 6.2.8-64
487487
```
488488
489489
```yaml
490490
redisEnterpriseServicesRiggerImageSpec:
491491
imagePullPolicy: IfNotPresent
492492
repository: harbor.corp.local/redisenterprise/k8s-controller
493-
versionTag: 6.2.8-11
493+
versionTag: 6.2.8-15
494494
```
495495
496496
```yaml
497497
bootstrapperImageSpec:
498498
imagePullPolicy: IfNotPresent
499499
repository: harbor.corp.local/redisenterprise/operator
500-
versionTag: 6.2.8-11
500+
versionTag: 6.2.8-15
501501
```
502502
503503
In Operator Deployment spec (operator.yaml):
@@ -509,7 +509,7 @@ spec:
509509
spec:
510510
containers:
511511
- name: redis-enterprise-operator
512-
image: harbor.corp.local/redisenterprise/operator:6.2.8-11
512+
image: harbor.corp.local/redisenterprise/operator:6.2.8-15
513513
```
514514
515515
Image specification follow the [K8s Container schema](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.10/#container-v1-core).
@@ -632,7 +632,7 @@ Note: in the examples above the Redis Enterprise Cluster name is: 'rec' and the
632632
The Operator automates and simplifies the upgrade process.
633633
The Redis Enterprise Cluster Software, and the Redis Enterprise Operator for Kubernetes versions are tightly coupled and should be upgraded together.
634634
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.
635-
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.2.8-53
635+
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.2.8-64
636636
637637
```yaml
638638
autoUpgradeRedisEnterprise: true
@@ -641,7 +641,7 @@ There are two ways to upgrade - either set 'autoUpgradeRedisEnterprise' within t
641641
Alternatively:
642642
```yaml
643643
RedisEnterpriseImageSpec:
644-
versionTag: redislabs/redis:6.2.8-53
644+
versionTag: redislabs/redis:6.2.8-64
645645
```
646646
647647
## Supported K8S Distributions

bundle.yaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ spec:
8989
shortNames:
9090
- redb
9191
scope: Namespaced
92+
preserveUnknownFields: false
9293
versions:
9394
- name: v1alpha1
9495
served: true
@@ -446,7 +447,7 @@ spec:
446447
description: Database port number. TCP port on which the database is
447448
available. Will be generated automatically if omitted. can not be
448449
changed after creation
449-
type: integer
450+
type: integer
450451
databaseSecretName:
451452
description: The name of the K8s secret that holds the password to the
452453
database.
@@ -684,7 +685,6 @@ spec:
684685
type: string
685686
type: object
686687
type: object
687-
688688
---
689689
apiVersion: v1
690690
kind: Service
@@ -715,7 +715,7 @@ spec:
715715
serviceAccountName: redis-enterprise-operator
716716
containers:
717717
- name: redis-enterprise-operator
718-
image: redislabs/operator:6.2.8-11
718+
image: redislabs/operator:6.2.8-15
719719
command:
720720
- redis-enterprise-operator
721721
imagePullPolicy: Always
@@ -757,7 +757,7 @@ spec:
757757
port: 8080
758758
scheme: HTTP
759759
- name: admission
760-
image: redislabs/operator:6.2.8-11
760+
image: redislabs/operator:6.2.8-15
761761
command:
762762
- /usr/local/bin/admission
763763
imagePullPolicy: Always
@@ -812,6 +812,7 @@ spec:
812812
shortNames:
813813
- rec
814814
scope: Namespaced
815+
preserveUnknownFields: false
815816
versions:
816817
- name: v1
817818
served: true

crds/rec_crd.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ spec:
1212
shortNames:
1313
- rec
1414
scope: Namespaced
15+
preserveUnknownFields: false
1516
versions:
1617
- name: v1
1718
served: true

crds/redb_crd.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ spec:
1212
shortNames:
1313
- redb
1414
scope: Namespaced
15+
preserveUnknownFields: false
1516
versions:
1617
- name: v1alpha1
1718
served: true
@@ -369,7 +370,7 @@ spec:
369370
description: Database port number. TCP port on which the database is
370371
available. Will be generated automatically if omitted. can not be
371372
changed after creation
372-
type: integer
373+
type: integer
373374
databaseSecretName:
374375
description: The name of the K8s secret that holds the password to the
375376
database.
@@ -606,5 +607,4 @@ spec:
606607
description: Database compatibility version
607608
type: string
608609
type: object
609-
type: object
610-
610+
type: object

multi-namespace-redb/operator.yaml

+2-2
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.2.8-11
18+
image: redislabs/operator:6.2.8-15
1919
command:
2020
- redis-enterprise-operator
2121
imagePullPolicy: Always
@@ -57,7 +57,7 @@ spec:
5757
port: 8080
5858
scheme: HTTP
5959
- name: admission
60-
image: redislabs/operator:6.2.8-11
60+
image: redislabs/operator:6.2.8-15
6161
command:
6262
- /usr/local/bin/admission
6363
imagePullPolicy: Always

openshift.bundle.yaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ spec:
110110
shortNames:
111111
- redb
112112
scope: Namespaced
113+
preserveUnknownFields: false
113114
versions:
114115
- name: v1alpha1
115116
served: true
@@ -467,7 +468,7 @@ spec:
467468
description: Database port number. TCP port on which the database is
468469
available. Will be generated automatically if omitted. can not be
469470
changed after creation
470-
type: integer
471+
type: integer
471472
databaseSecretName:
472473
description: The name of the K8s secret that holds the password to the
473474
database.
@@ -705,7 +706,6 @@ spec:
705706
type: string
706707
type: object
707708
type: object
708-
709709
---
710710
apiVersion: v1
711711
kind: Service
@@ -736,7 +736,7 @@ spec:
736736
serviceAccountName: redis-enterprise-operator
737737
containers:
738738
- name: redis-enterprise-operator
739-
image: registry.connect.redhat.com/redislabs/redis-enterprise-operator:6.2.8-11
739+
image: registry.connect.redhat.com/redislabs/redis-enterprise-operator:6.2.8-15
740740
securityContext:
741741
runAsUser: 1001
742742
command:
@@ -782,7 +782,7 @@ spec:
782782
port: 8080
783783
scheme: HTTP
784784
- name: admission
785-
image: registry.connect.redhat.com/redislabs/redis-enterprise-operator:6.2.8-11
785+
image: registry.connect.redhat.com/redislabs/redis-enterprise-operator:6.2.8-15
786786
command:
787787
- /usr/local/bin/admission
788788
imagePullPolicy: Always
@@ -837,6 +837,7 @@ spec:
837837
shortNames:
838838
- rec
839839
scope: Namespaced
840+
preserveUnknownFields: false
840841
versions:
841842
- name: v1
842843
served: true

openshift/operator_rhel.yaml

+2-2
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: registry.connect.redhat.com/redislabs/redis-enterprise-operator:6.2.8-11
18+
image: registry.connect.redhat.com/redislabs/redis-enterprise-operator:6.2.8-15
1919
securityContext:
2020
runAsUser: 1001
2121
command:
@@ -61,7 +61,7 @@ spec:
6161
port: 8080
6262
scheme: HTTP
6363
- name: admission
64-
image: registry.connect.redhat.com/redislabs/redis-enterprise-operator:6.2.8-11
64+
image: registry.connect.redhat.com/redislabs/redis-enterprise-operator:6.2.8-15
6565
command:
6666
- /usr/local/bin/admission
6767
imagePullPolicy: Always

openshift/rec_rhel.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
nodes: 3
88
redisEnterpriseImageSpec:
99
repository: registry.connect.redhat.com/redislabs/redis-enterprise
10-
versionTag: 6.2.8-53.rhel7-openshift
10+
versionTag: 6.2.8-64.rhel7-openshift
1111
redisEnterpriseServicesRiggerImageSpec:
1212
repository: registry.connect.redhat.com/redislabs/services-manager
1313
bootstrapperImageSpec:

operator.yaml

+2-2
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.2.8-11
18+
image: redislabs/operator:6.2.8-15
1919
command:
2020
- redis-enterprise-operator
2121
imagePullPolicy: Always
@@ -57,7 +57,7 @@ spec:
5757
port: 8080
5858
scheme: HTTP
5959
- name: admission
60-
image: redislabs/operator:6.2.8-11
60+
image: redislabs/operator:6.2.8-15
6161
command:
6262
- /usr/local/bin/admission
6363
imagePullPolicy: Always

0 commit comments

Comments
 (0)