diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-06-09 04:56:20 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-06-09 04:56:20 +0000 |
commit | 753d0f9aceb697fa37729cb6af12ecb7dc8b7f23 (patch) | |
tree | 1035c6d16c758ac481d04787a88006b9cde6d51d /docker/services | |
parent | 7756c9f4ab28c9e32546fe29453ed95d846356ec (diff) | |
parent | e825cda0f9895ae976fda686c800cce069bb925c (diff) |
Merge "Modify libvirtd container command line when TLS is enabled"
Diffstat (limited to 'docker/services')
-rw-r--r-- | docker/services/nova-libvirt.yaml | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/docker/services/nova-libvirt.yaml b/docker/services/nova-libvirt.yaml index 9779d676..df0051f2 100644 --- a/docker/services/nova-libvirt.yaml +++ b/docker/services/nova-libvirt.yaml @@ -44,6 +44,26 @@ parameters: description: Mapping of service endpoint -> protocol. Typically set via parameter_defaults in the resource registry. type: json + EnableInternalTLS: + type: boolean + default: false + UseTLSTransportForLiveMigration: + type: boolean + default: true + description: If set to true and if EnableInternalTLS is enabled, it will + set the libvirt URI's transport to tls and configure the + relevant keys for libvirt. + +conditions: + + use_tls_for_live_migration: + and: + - equals: + - {get_param: EnableInternalTLS} + - true + - equals: + - {get_param: UseTLSTransportForLiveMigration} + - true resources: @@ -85,7 +105,11 @@ outputs: - [ {get_param: DockerNamespace}, {get_param: DockerNovaConfigImage} ] kolla_config: /var/lib/kolla/config_files/nova-libvirt.json: - command: /usr/sbin/libvirtd --config /etc/libvirt/libvirtd.conf + command: + if: + - use_tls_for_live_migration + - /usr/sbin/libvirtd --listen --config /etc/libvirt/libvirtd.conf + - /usr/sbin/libvirtd --config /etc/libvirt/libvirtd.conf permissions: - path: /var/log/nova owner: nova:nova |