Skip to content

Commit

Permalink
Merge pull request #636 from olliewalsh/nova_disable_nbd_tls
Browse files Browse the repository at this point in the history
Disable NBD TLS until libvirt/qemu issues are resolved
  • Loading branch information
openshift-merge-bot[bot] authored Apr 24, 2024
2 parents b65ebe4 + 2430147 commit 76edab9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 4 additions & 1 deletion roles/edpm_nova/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ edpm_nova_compute_image: "quay.io/podified-antelope-centos9/openstack-nova-compu

# Libvirt TLS
edpm_nova_live_migration_tls: "{{ edpm_tls_certs_enabled | default(False) }}"
edpm_nova_live_migration_native_tls: "{{ edpm_tls_certs_enabled | default(False) }}"
# FIXME(owalsh): Disable NBD TLS until issues are resolved:
# https://issues.redhat.com/browse/RHEL-33754
# https://issues.redhat.com/browse/RHEL-33781
edpm_nova_live_migration_native_tls: false

# NOTE(sean-k-mooney): nova will use unix sockets for libvirt and communicate with ovs via tcp
# so we will not need the libvirt or ovs client certs or ca. nova will communicate other services
Expand Down
5 changes: 0 additions & 5 deletions roles/edpm_nova/templates/02-nova-host-specific.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,3 @@ live_migration_with_native_tls = {{ edpm_nova_live_migration_native_tls|bool }}
{% if edpm_nova_live_migration_tls|bool %}
live_migration_uri = qemu+tls://%s/system
{% endif %}

{% if edpm_nova_live_migration_native_tls|bool %}
# FIXME(owalsh): workaround https://issues.redhat.com/browse/LIBVIRT-1113
live_migration_permit_post_copy = False
{% endif %}

0 comments on commit 76edab9

Please sign in to comment.