Fix missing logrotate configuration for proxysql logs

This trivial patch is just adding missed logrotate
configuration for proxysql.

Closes-Bug: #1995248
Change-Id: I3ad88d03836930160b6db43a7cad63b34ffc62b0
This commit is contained in:
Michal Arbet 2022-10-31 11:14:48 +01:00
parent f15cb4dda3
commit 6c9d1f9b55
3 changed files with 9 additions and 0 deletions

View File

@ -194,6 +194,7 @@
- { name: "outward-rabbitmq", enabled: "{{ enable_outward_rabbitmq | bool }}" } - { name: "outward-rabbitmq", enabled: "{{ enable_outward_rabbitmq | bool }}" }
- { name: "placement", enabled: "{{ enable_placement | bool }}" } - { name: "placement", enabled: "{{ enable_placement | bool }}" }
- { name: "prometheus", enabled: "{{ enable_prometheus | bool }}" } - { name: "prometheus", enabled: "{{ enable_prometheus | bool }}" }
- { name: "proxysql", enabled: "{{ enable_proxysql | bool }}" }
- { name: "rabbitmq", enabled: "{{ enable_rabbitmq | bool }}" } - { name: "rabbitmq", enabled: "{{ enable_rabbitmq | bool }}" }
- { name: "sahara", enabled: "{{ enable_sahara | bool }}" } - { name: "sahara", enabled: "{{ enable_sahara | bool }}" }
- { name: "senlin", enabled: "{{ enable_senlin | bool }}" } - { name: "senlin", enabled: "{{ enable_senlin | bool }}" }

View File

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

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes missing logrotate configuration for proxysql logs.
`LP#1995248 <https://launchpad.net/bugs/1995248>`__