You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Image specification follow the [K8s Container schema](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.10/#container-v1-core).
@@ -634,7 +632,7 @@ Note: in the examples above the Redis Enterprise Cluster name is: 'rec' and the
634
632
The Operator automates and simplifies the upgrade process.
635
633
The Redis Enterprise Cluster Software, and the Redis Enterprise Operator for Kubernetes versions are tightly coupled and should be upgraded together.
636
634
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.
637
-
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
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.10-90
638
636
639
637
```yaml
640
638
autoUpgradeRedisEnterprise: true
@@ -643,7 +641,7 @@ There are two ways to upgrade - either set 'autoUpgradeRedisEnterprise' within t
643
641
Alternatively:
644
642
```yaml
645
643
RedisEnterpriseImageSpec:
646
-
versionTag: redislabs/redis:6.2.8-64
644
+
versionTag: redislabs/redis:6.2.10-90
647
645
```
648
646
649
647
## Supported K8S Distributions
@@ -665,12 +663,17 @@ Supported versions (platforms/versions that are not listed are not supported):
This instructions are provided as a work around and not considered official, any use of this is the user responsibility.
5
+
6
+
Notes:
7
+
This doc is assuming the following:
8
+
• Redis Gears is already installed on the Redis enterprise cluster.
9
+
• The Redis gears Python version is 3.7 (if not the sidecar container image should be changed).
10
+
11
+
Instructions:
12
+
a. edit the gears.yaml, replace the <Python packages> with the Python packages that should be installed.
13
+
The packages must be separated by a ' ' (space).
14
+
For example to install the packages pytz version 2021.3 and kubernetes the yaml should be:
15
+
```
16
+
...
17
+
- name: "GEARS_PACKAGES"
18
+
value: "pytz==2021.3 kubernetes"
19
+
...
20
+
```
21
+
b. Run the kubectl patch command on your cluster with the modified gears.yaml from the previous step, replace the <REC name> with the name of your Redis enterprise cluster:
0 commit comments