Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ansible/roles/common/tasks/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@
- { name: "nova", enabled: "{{ enable_nova | bool }}" }
- { name: "nova-libvirt", enabled: "{{ enable_nova | bool and enable_nova_libvirt_container | bool }}" }
- { name: "octavia", enabled: "{{ enable_octavia | bool }}" }
- { name: "opensearch", enabled: "{{ enable_opensearch | bool or enable_opensearch_dashboards | bool }}" }
- { name: "opensearch", enabled: "{{ enable_opensearch | bool }}" }
- { name: "opensearch-dashboards", enabled: "{{ enable_opensearch_dashboards | bool }}" }
- { name: "openvswitch", enabled: "{{ enable_openvswitch | bool }}" }
- { name: "placement", enabled: "{{ enable_placement | bool }}" }
- { name: "prometheus", enabled: "{{ enable_prometheus | bool }}" }
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"/var/log/kolla/opensearch-dashboards/*.log"
{
}
8 changes: 8 additions & 0 deletions releasenotes/notes/bug-2137716-a4e20f90d990e893.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
fixes:
- |
Adds logrotate configuration for OpenSearch Dashboards. Previously,
logs located in ``/var/log/kolla/opensearch-dashboards/`` were not
included in the rotation schedule, which could lead to excessive
disk space consumption.
`LP#2137716 <https://launchpad.net/bugs/2137716>`__