nova/libvirt: switch vnc server binding
authorEmilien Macchi <emilien@redhat.com>
Tue, 31 Jan 2017 18:20:51 +0000 (13:20 -0500)
committerJuan Antonio Osorio Robles <jaosorior@redhat.com>
Mon, 6 Feb 2017 17:10:19 +0000 (17:10 +0000)
On compute nodes, instead of binding vnc server on 0.0.0.0, use the IP
address provided by libvirt's t-h-t profile (hiera).

Co-Authored-By: Juan Antonio Osorio Robles <jaosorior@redhat.com>
Depends-On: Ie377c09734e9f6170daa519aed69c53fc67c366b
Change-Id: If6b116b238a52144aad5e76c9edc7df6aa15313c
Closes-Bug: #1660099

manifests/profile/base/nova/compute/libvirt.pp
releasenotes/notes/vncserver_listen-4417377cac38464c.yaml [new file with mode: 0644]

index 6767f6b..cc9beb6 100644 (file)
@@ -40,24 +40,13 @@ class tripleo::profile::base::nova::compute::libvirt (
       }
     }
 
-    # TODO(emilien): Some work needs to be done in puppet-nova to separate nova-compute config
-    # when running libvirt and libvirt itself, so we allow micro-services deployments.
-    if str2bool(hiera('nova::use_ipv6', false)) {
-      $vncserver_listen = '::0'
-    } else {
-      $vncserver_listen = '0.0.0.0'
-    }
-
     if $rbd_ephemeral_storage {
       class { '::nova::compute::libvirt':
         libvirt_disk_cachemodes => ['network=writeback'],
         libvirt_hw_disk_discard => 'unmap',
-        vncserver_listen        => $vncserver_listen,
       }
     } else {
-      class { '::nova::compute::libvirt' :
-        vncserver_listen => $vncserver_listen,
-      }
+      include ::nova::compute::libvirt
     }
 
     include ::nova::compute::libvirt::qemu
diff --git a/releasenotes/notes/vncserver_listen-4417377cac38464c.yaml b/releasenotes/notes/vncserver_listen-4417377cac38464c.yaml
new file mode 100644 (file)
index 0000000..0c0f8ea
--- /dev/null
@@ -0,0 +1,7 @@
+---
+features:
+  - Configure VNC server to be binded on internal network interface on compute nodes.
+    This value comes from tripleo-heat-templates and is configured by default to use
+    an IP address from the internal API network.
+    We use the ServiceNetMap in tripleo-heat-templates to compute the IP address, and we won't
+    configure 0.0.0.0 anymore as it used to open the binding to any network, which is unsecure.