Merge "Do not encrypt SSL for CentOS distro path"

This commit is contained in:
Zuul 2022-04-29 22:50:29 +00:00 committed by Gerrit Code Review
commit 49248b2ae3
1 changed files with 3 additions and 1 deletions

View File

@ -34,7 +34,9 @@ rabbitmq_policies:
galera_client_package_state: "{{ package_state }}"
galera_address: "{{ internal_lb_vip_address }}"
galera_root_user: "admin"
galera_use_ssl: True
# Disable SSL for CentOS distro path due to https://bugzilla.redhat.com/show_bug.cgi?id=2074555
galera_use_ssl: "{{ not (ansible_facts['os_family'] | lower == 'redhat' and install_method == 'distro') }}"
## Memcached options
memcached_port: 11211