Merge "Add LibvirtTLSPriority to set libvirtd tls_priority"

This commit is contained in:
Zuul 2019-08-27 02:47:08 +00:00 committed by Gerrit Code Review
commit 44403bf65a
2 changed files with 11 additions and 0 deletions

View File

@ -218,6 +218,11 @@ parameters:
https://libvirt.org/logging.html .
type: string
default: '1:libvirt 1:qemu 1:conf 1:security 3:event 3:json 3:file 3:object 1:util'
LibvirtTLSPriority:
description: >
Override the compile time default TLS priority string.
type: string
default: 'NORMAL:-VERS-SSL3.0:-VERS-TLS-ALL:+VERS-TLS1.2'
conditions:
@ -404,6 +409,7 @@ outputs:
generate_service_certificates: true
tripleo::profile::base::nova::migration::client::libvirt_tls: true
tripleo::profile::base::nova::libvirt::tls_password: {get_param: [LibvirtTLSPassword]}
nova::compute::libvirt::tls_priority: {get_param: LibvirtTLSPriority}
nova::migration::libvirt::listen_address:
str_replace:
template:

View File

@ -0,0 +1,5 @@
---
features:
- |
Adds LibvirtTLSPriority parameter to override the compile time default TLS
priority string. Default: 'NORMAL:-VERS-SSL3.0:-VERS-TLS-ALL:+VERS-TLS1.2'