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
> * RedHat certified images are available on [Redhat Catalog](https://access.redhat.com/containers/#/product/71f6d1bb3408bd0d) </br>
34
34
35
35
@@ -213,7 +213,7 @@ The operator deploys a `RedisEnterpriseCluster` with default configurations valu
213
213
redisEnterpriseImageSpec:
214
214
imagePullPolicy: IfNotPresent
215
215
repository: redislabs/redis
216
-
versionTag: 6.0.8-28
216
+
versionTag: 6.0.8-30
217
217
```
218
218
219
219
* Persistence
@@ -252,7 +252,7 @@ The operator deploys a `RedisEnterpriseCluster` with default configurations valu
252
252
uiServiceType: LoadBalancer
253
253
```
254
254
255
-
* Database service type (optional): Service types for access to databases. Should be a comma separated list. The possible values are cluster_ip, headless, and load_balancer. Default value is `cluster_ip,headless`. For example, to create on load_balancer type database services, explicitly add the following declaration to the Redis Enterprise Cluster spec:
255
+
* Database service type (optional): Service types for access to databases. Should be a comma separated list. The possible values are cluster_ip, headless, and load_balancer. Default value is `cluster_ip,headless`. For example, to create a load_balancer type database service, explicitly add the following declaration to the Redis Enterprise Cluster spec:
Image specification follow the [K8s Container schema](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.10/#container-v1-core).
@@ -392,7 +392,7 @@ spec:
392
392
The Operator automates and simplifies the upgrade process.
393
393
The Redis Enterprise Cluster Software, and the Redis Enterprise Operator for Kubernetes versions are tightly coupled and should be upgraded together.
394
394
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.
395
-
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.8-28
395
+
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.8-30
396
396
397
397
```yaml
398
398
autoUpgradeRedisEnterprise: true
@@ -401,23 +401,23 @@ There are two ways to upgrade - either set 'autoUpgradeRedisEnterprise' within t
401
401
Alternatively:
402
402
```yaml
403
403
RedisEnterpriseImageSpec:
404
-
versionTag: redislabs/redis:6.0.8-28
404
+
versionTag: redislabs/redis:6.0.8-30
405
405
```
406
406
407
407
## Supported K8S Distributions
408
408
Each release of the Redis Enterprise Operator deployment is thoroughly tested against a set of Kubernetes distributions. The table below lists these, along with the current release's support status. "Supported", as well as "deprecated" support status indicates the current release has been tested in this environment and supported by RedisLabs. "Deprecated" also indicates that support will be dropped in a coming future release. "No longer supported" indicates that support has been dropped for this distribution. Any distribution that isn't explicitly listed is not supported for production workloads by RedisLabs.
Copy file name to clipboardExpand all lines: admission/README.md
+4-2
Original file line number
Diff line number
Diff line change
@@ -89,12 +89,14 @@ $ kubectl apply -f - << EOF
89
89
apiVersion: app.redislabs.com/v1alpha1
90
90
kind: RedisEnterpriseDatabase
91
91
metadata:
92
-
name: test-database-custom-resource
92
+
name: redis-enterprise-database
93
+
spec:
94
+
evictionPolicy: illegal
93
95
EOF
94
96
```
95
97
96
98
This must fail with an error output by the admission webhook redb.admisison.redislabs that is being denied because it can't get the login credentials for the Redis Enterprise Cluster as none were specified.
97
99
98
100
```shell script
99
-
Error from server: error when creating "STDIN": admission webhook "redb.admission.redislabs" denied the request: createRECClient: GetLoginInfo: resource name may not be empty
101
+
Error from server: error when creating "STDIN": admission webhook "redb.admission.redislabs" denied the request: eviction_policy: u'illegal' is not one of [u'volatile-lru', u'volatile-ttl', u'volatile-random', u'allkeys-lru', u'allkeys-random', u'noeviction', u'volatile-lfu', u'allkeys-lfu']
0 commit comments