mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 08:16:28 +00:00
Merge pull request #1190 from leela/redis-config
feat: Redis ACL config is added to conf templates
This commit is contained in:
commit
06cfd76a6b
@ -12,7 +12,8 @@ default_config = {
|
|||||||
'rebase_on_pull': False,
|
'rebase_on_pull': False,
|
||||||
'frappe_user': getpass.getuser(),
|
'frappe_user': getpass.getuser(),
|
||||||
'shallow_clone': True,
|
'shallow_clone': True,
|
||||||
'background_workers': 1
|
'background_workers': 1,
|
||||||
|
'use_redis_auth': False
|
||||||
}
|
}
|
||||||
|
|
||||||
def make_config(bench_path):
|
def make_config(bench_path):
|
||||||
|
@ -12,6 +12,7 @@ def generate_config(bench_path):
|
|||||||
from urllib.parse import urlparse
|
from urllib.parse import urlparse
|
||||||
|
|
||||||
config = get_config(bench_path)
|
config = get_config(bench_path)
|
||||||
|
redis_version = get_redis_version()
|
||||||
|
|
||||||
ports = {}
|
ports = {}
|
||||||
for key in ('redis_cache', 'redis_queue', 'redis_socketio'):
|
for key in ('redis_cache', 'redis_queue', 'redis_socketio'):
|
||||||
@ -22,6 +23,7 @@ def generate_config(bench_path):
|
|||||||
context={
|
context={
|
||||||
"port": ports['redis_queue'],
|
"port": ports['redis_queue'],
|
||||||
"bench_path": os.path.abspath(bench_path),
|
"bench_path": os.path.abspath(bench_path),
|
||||||
|
"redis_version": redis_version
|
||||||
},
|
},
|
||||||
bench_path=bench_path
|
bench_path=bench_path
|
||||||
)
|
)
|
||||||
@ -30,6 +32,7 @@ def generate_config(bench_path):
|
|||||||
template_name='redis_socketio.conf',
|
template_name='redis_socketio.conf',
|
||||||
context={
|
context={
|
||||||
"port": ports['redis_socketio'],
|
"port": ports['redis_socketio'],
|
||||||
|
"redis_version": redis_version
|
||||||
},
|
},
|
||||||
bench_path=bench_path
|
bench_path=bench_path
|
||||||
)
|
)
|
||||||
@ -39,7 +42,7 @@ def generate_config(bench_path):
|
|||||||
context={
|
context={
|
||||||
"maxmemory": config.get('cache_maxmemory', get_max_redis_memory()),
|
"maxmemory": config.get('cache_maxmemory', get_max_redis_memory()),
|
||||||
"port": ports['redis_cache'],
|
"port": ports['redis_cache'],
|
||||||
"redis_version": get_redis_version(),
|
"redis_version": redis_version
|
||||||
},
|
},
|
||||||
bench_path=bench_path
|
bench_path=bench_path
|
||||||
)
|
)
|
||||||
@ -49,11 +52,26 @@ def generate_config(bench_path):
|
|||||||
if not os.path.exists(pid_path):
|
if not os.path.exists(pid_path):
|
||||||
os.makedirs(pid_path)
|
os.makedirs(pid_path)
|
||||||
|
|
||||||
|
# ACL feature is introduced in Redis 6.0
|
||||||
|
if redis_version < 6.0:
|
||||||
|
return
|
||||||
|
|
||||||
|
# make ACL files
|
||||||
|
acl_rq_path = os.path.join(bench_path, "config", "redis_queue.acl")
|
||||||
|
acl_redis_cache_path = os.path.join(bench_path, "config", "redis_cache.acl")
|
||||||
|
acl_redis_socketio_path = os.path.join(bench_path, "config", "redis_socketio.acl")
|
||||||
|
open(acl_rq_path, 'a').close()
|
||||||
|
open(acl_redis_cache_path, 'a').close()
|
||||||
|
open(acl_redis_socketio_path, 'a').close()
|
||||||
|
|
||||||
def write_redis_config(template_name, context, bench_path):
|
def write_redis_config(template_name, context, bench_path):
|
||||||
template = bench.config.env().get_template(template_name)
|
template = bench.config.env().get_template(template_name)
|
||||||
|
|
||||||
|
if "config_path" not in context:
|
||||||
|
context["config_path"] = os.path.abspath(os.path.join(bench_path, "config"))
|
||||||
|
|
||||||
if "pid_path" not in context:
|
if "pid_path" not in context:
|
||||||
context["pid_path"] = os.path.abspath(os.path.join(bench_path, "config", "pids"))
|
context["pid_path"] = os.path.join(context["config_path"], "pids")
|
||||||
|
|
||||||
with open(os.path.join(bench_path, 'config', template_name), 'w') as f:
|
with open(os.path.join(bench_path, 'config', template_name), 'w') as f:
|
||||||
f.write(template.render(**context))
|
f.write(template.render(**context))
|
||||||
|
@ -9,3 +9,6 @@ appendonly no
|
|||||||
{% if redis_version and redis_version >= 2.2 %}
|
{% if redis_version and redis_version >= 2.2 %}
|
||||||
save ""
|
save ""
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if redis_version and redis_version >= 6.0 %}
|
||||||
|
aclfile {{ config_path }}/redis_cache.acl
|
||||||
|
{% endif %}
|
||||||
|
@ -3,3 +3,6 @@ dir {{ pid_path }}
|
|||||||
pidfile {{ pid_path }}/redis_queue.pid
|
pidfile {{ pid_path }}/redis_queue.pid
|
||||||
bind 127.0.0.1
|
bind 127.0.0.1
|
||||||
port {{ port }}
|
port {{ port }}
|
||||||
|
{% if redis_version and redis_version >= 6.0 %}
|
||||||
|
aclfile {{ config_path }}/redis_queue.acl
|
||||||
|
{% endif %}
|
||||||
|
@ -3,3 +3,6 @@ dir {{ pid_path }}
|
|||||||
pidfile {{ pid_path }}/redis_socketio.pid
|
pidfile {{ pid_path }}/redis_socketio.pid
|
||||||
bind 127.0.0.1
|
bind 127.0.0.1
|
||||||
port {{ port }}
|
port {{ port }}
|
||||||
|
{% if redis_version and redis_version >= 6.0 %}
|
||||||
|
aclfile {{ config_path }}/redis_socketio.acl
|
||||||
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user