octavia: add missing bool to the enable_octavia_jobboard parameter

Closes-Bug: #2058046
Change-Id: I9304f3546b20c0406e195163dccb1433fe802204
This commit is contained in:
Christian Berendt 2024-03-15 16:12:31 +01:00 committed by Sven Kieske
parent 21543fefb9
commit 57a11260f0
No known key found for this signature in database
2 changed files with 6 additions and 1 deletions

View File

@ -154,7 +154,7 @@ ca_certificates_file = {{ openstack_cacert }}
region_name = {{ openstack_region_name }}
endpoint_type = internal
ca_certificates_file = {{ openstack_cacert }}
{% if enable_octavia_jobboard %}
{% if enable_octavia_jobboard | bool %}
[task_flow]
persistence_connection = mysql+pymysql://{{ octavia_persistence_database_user }}:{{ octavia_persistence_database_password }}@{{ octavia_persistence_database_address }}/{{ octavia_persistence_database_name }}

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fix the Octavia jobboard boolean value.
See https://bugs.launchpad.net/kolla-ansible/+bug/2058046 for details.