Skip to content
Snippets Groups Projects
Commit 334eb326 authored by Rebar's avatar Rebar
Browse files

Default to disableCommand as null in values.yaml

parent 573d5ef0
Branches
Tags
1 merge request!18Include disableCommands to override Bitnami Redis
......@@ -114,18 +114,20 @@ database:
# installed as a convential plugin and configured to connect to this Redis
# Change Redis MU plugin configurations to use MU instead
redis:
# Set redis.enabled to true to have a Redis container next to your WP. The WP will be
# configured to connect to this Redis and `Redis Object Cache` plugin will be
# installed as a conventional plugin.
enabled: false
# password: <SET A REDIS PASSWORD HERE>
#
# # Set to true you want redis to have persistence:
# master:
# persistence:
# enabled: false
# disableCommands: []
#
# # Set to true to have a master and a slave redis. Not necessary for caching
# cluster:
# enabled: false
# master:
# persistence:
# # Set persistence to true you want redis to have persistence
# enabled: false
# # disableCommand is set as null to enable FLUSHALL and FLUSHDB and allow cache purge and flush
# disableCommands: []
# cluster:
# #Set redis.cluster.enabled as true to have a master and a slave redis. Not necessary for caching
# enabled: false
......
......@@ -303,20 +303,20 @@ database:
[manager]
port=3306
socket=/opt/bitnami/mariadb/tmp/mysql.sock
redis:
# Set this to true to have a Redis container next to your WP. The WP will be
# Set redis.enabled to true to have a Redis container next to your WP. The WP will be
# configured to connect to this Redis and `Redis Object Cache` plugin will be
# installed as a conventional plugin.
enabled: false
# # Set to true you want redis to have persistence:
# master:
# persistence:
# enabled: false
# disableCommands: []
# # Set to true to have a master and a slave redis. Not necessary for caching
# cluster:
# enabled: false
master:
persistence:
# Set persistence to true you want redis to have persistence
enabled: false
# disableCommand is set as null to enable FLUSHALL and FLUSHDB and allow cache purge and flush
disableCommands: []
cluster:
# Set redis.cluster.enabled as true to have a master and a slave redis. Not necessary for caching
enabled: false
backup:
enabled: false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment