Enable ProxySQL by default

This matches a recent change in kolla-ansible [1].

[1] https://review.opendev.org/c/openstack/kolla-ansible/+/913724

Change-Id: I8a7a84025e93c4dcb1285bc28f3bd481bbdfff32
This commit is contained in:
Pierre Riteau 2024-10-25 12:10:30 +02:00
parent 3b1b81b3a6
commit 66d14fc99f
2 changed files with 6 additions and 1 deletions

View File

@ -510,7 +510,7 @@ kolla_enable_mariadb: "yes"
kolla_enable_memcached: "yes"
kolla_enable_neutron: "{{ kolla_enable_openstack_core | bool }}"
kolla_enable_nova: "{{ kolla_enable_openstack_core | bool }}"
kolla_enable_proxysql: "no"
kolla_enable_proxysql: "yes"
kolla_enable_rabbitmq: "yes"
# OpenStack services can be enabled or disabled with these options

View File

@ -0,0 +1,5 @@
---
features:
- |
Enables ProxySQL by default. ProxySQL can be disabled by setting the
``kolla_enable_proxysql`` variable to ``false``.