From 2650f654af447e4530e17526f545d434bf6e2e45 Mon Sep 17 00:00:00 2001 From: Andrew Smith Date: Mon, 4 Jun 2018 13:23:30 -0400 Subject: [PATCH] Add rabbit driver ssl config option The driver option is necessary as the transport_url query param override requires the value. Default will be to use the oslomsg rpc setting. Change-Id: Ic9bc50824be37c544444c9e6f296151e1db427ea --- templates/ironic.conf.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/ironic.conf.j2 b/templates/ironic.conf.j2 index 1a8aa4a6..fc6ee0d6 100644 --- a/templates/ironic.conf.j2 +++ b/templates/ironic.conf.j2 @@ -145,6 +145,7 @@ lock_path = {{ ironic_lock_path }} transport_url = {{ ironic_oslomsg_notify_transport }}://{% for host in ironic_oslomsg_notify_servers.split(',') %}{{ ironic_oslomsg_notify_userid }}:{{ ironic_oslomsg_notify_password }}@{{ host }}:{{ ironic_oslomsg_notify_port }}{% if not loop.last %},{% else %}/{{ ironic_oslomsg_notify_vhost }}{% if ironic_oslomsg_notify_use_ssl | bool %}?ssl=1{% else %}?ssl=0{% endif %}{% endif %}{% endfor %} [oslo_messaging_rabbit] +ssl = {{ ironic_oslomsg_rpc_use_ssl }} pool_max_size = {{ ironic_wsgi_processes }}