Add logrotate config for redis

Add missing logrotate config for redis.

Closes-Bug: 2084523

Change-Id: Ic631a9c87f7be30f7694706928d9ede62015ed6d
Signed-off-by: Jan Horstmann <horstmann@osism.tech>
This commit is contained in:
Jan Horstmann 2024-10-15 10:37:40 +02:00
parent b382471d02
commit 646e24f713
No known key found for this signature in database
3 changed files with 9 additions and 0 deletions

View File

@ -251,6 +251,7 @@
- { name: "prometheus", enabled: "{{ enable_prometheus | bool }}" }
- { name: "proxysql", enabled: "{{ enable_proxysql | bool }}" }
- { name: "rabbitmq", enabled: "{{ enable_rabbitmq | bool }}" }
- { name: "redis", enabled: "{{ enable_redis | bool }}" }
- { name: "skyline", enabled: "{{ enable_skyline | bool }}" }
- { name: "swift", enabled: "{{ enable_swift | bool }}" }
- { name: "tacker", enabled: "{{ enable_tacker | bool }}" }

View File

@ -0,0 +1,3 @@
"/var/log/kolla/redis/*.log"
{
}

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Add missing logrotate config for redis.
`LP#2084523 <https://bugs.launchpad.net/kolla-ansible/+bug/2084523>`__