diff --git a/bitnami/redis-sentinel/5.0/debian-10/Dockerfile b/bitnami/redis-sentinel/5.0/debian-10/Dockerfile index df31ed2caaaa..ed5c9fec5a01 100644 --- a/bitnami/redis-sentinel/5.0/debian-10/Dockerfile +++ b/bitnami/redis-sentinel/5.0/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/redis-sentinel/postunpack.sh ENV BITNAMI_APP_NAME="redis-sentinel" \ - BITNAMI_IMAGE_VERSION="5.0.10-debian-10-r96" + BITNAMI_IMAGE_VERSION="5.0.10-debian-10-r97" EXPOSE 26379 diff --git a/bitnami/redis-sentinel/5.0/debian-10/rootfs/opt/bitnami/scripts/libredissentinel.sh b/bitnami/redis-sentinel/5.0/debian-10/rootfs/opt/bitnami/scripts/libredissentinel.sh index 07a20af4102a..c5fcd0768aa1 100644 --- a/bitnami/redis-sentinel/5.0/debian-10/rootfs/opt/bitnami/scripts/libredissentinel.sh +++ b/bitnami/redis-sentinel/5.0/debian-10/rootfs/opt/bitnami/scripts/libredissentinel.sh @@ -86,7 +86,7 @@ redis_validate() { if is_boolean_yes "$REDIS_SENTINEL_TLS_ENABLED"; then if [[ "$REDIS_SENTINEL_PORT_NUMBER" == "$REDIS_SENTINEL_TLS_PORT_NUMBER" ]] && [[ "$REDIS_SENTINEL_PORT_NUMBER" != "26379" ]]; then # If both ports are assigned the same numbers and they are different to the default settings - print_validation_error "Enviroment variables REDIS_SENTINEL_PORT_NUMBER and REDIS_SENTINEL_TLS_PORT_NUMBER point to the same port number (${REDIS_SENTINEL_PORT_NUMBER}). Change one of them or disable non-TLS traffic by setting REDIS_SENTINEL_PORT_NUMBER=0" + print_validation_error "Environment variables REDIS_SENTINEL_PORT_NUMBER and REDIS_SENTINEL_TLS_PORT_NUMBER point to the same port number (${REDIS_SENTINEL_PORT_NUMBER}). Change one of them or disable non-TLS traffic by setting REDIS_SENTINEL_PORT_NUMBER=0" fi if [[ -z "$REDIS_SENTINEL_TLS_CERT_FILE" ]]; then print_validation_error "You must provide a X.509 certificate in order to use TLS" diff --git a/bitnami/redis-sentinel/README.md b/bitnami/redis-sentinel/README.md index b2df41f9a035..0d272ba3c5d3 100644 --- a/bitnami/redis-sentinel/README.md +++ b/bitnami/redis-sentinel/README.md @@ -48,7 +48,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`6.0`, `6.0-debian-10`, `6.0.10`, `6.0.10-debian-10-r22`, `latest` (6.0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis-sentinel/blob/6.0.10-debian-10-r22/6.0/debian-10/Dockerfile) -* [`5.0`, `5.0-debian-10`, `5.0.10`, `5.0.10-debian-10-r96` (5.0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis-sentinel/blob/5.0.10-debian-10-r96/5.0/debian-10/Dockerfile) +* [`5.0`, `5.0-debian-10`, `5.0.10`, `5.0.10-debian-10-r97` (5.0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis-sentinel/blob/5.0.10-debian-10-r97/5.0/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/redis-sentinel GitHub repo](https://github.com/bitnami/bitnami-docker-redis-sentinel). @@ -225,7 +225,7 @@ The Redis(TM) Sentinel instance can be customized by specifying environment vari ## Securing Redis(TM) Sentinel traffic -Starting with version 6, Redis(TM) adds the support for SSL/TLS connections. Should you desire to enable this optional feature, you may use the aforementioned `REDIS_SENTINEL_TLS_*` enviroment variables to configure the application. +Starting with version 6, Redis(TM) adds the support for SSL/TLS connections. Should you desire to enable this optional feature, you may use the aforementioned `REDIS_SENTINEL_TLS_*` environment variables to configure the application. When enabling TLS, conventional standard traffic is disabled by default. However this new feature is not mutually exclusive, which means it is possible to listen to both TLS and non-TLS connection simultaneously. To enable non-TLS traffic, set `REDIS_SENTINEL_PORT_NUMBER` to another port different than `0`.