Add support for VNC to VMs created by ansible 23/52223/5
authorJohn O Loughlin <john.oloughlin@intel.com>
Fri, 16 Feb 2018 09:24:49 +0000 (09:24 +0000)
committerJohn O'Loughlin <john.oloughlin@intel.com>
Mon, 12 Mar 2018 10:13:04 +0000 (10:13 +0000)
JIRA: YARDSTICK-1017

Change-Id: I76ca53c12a6791ecbf7f546f9074b16c5f6d215a
Signed-off-by: John O Loughlin <john.oloughlin@intel.com>
ansible/roles/infra_create_vms/tasks/configure_vm.yml

index 7419fd5..c20a0b1 100644 (file)
       - console:
           type: pty
           tty: '/dev/pts/14'
+      - graphics:
+          type: vnc
+          port: '-1'
+          autoport: 'yes'
     pretty_print: yes
 
 - name: Add new children nodes to "disk" node
           name: virtio-disk0
     pretty_print: yes
 
+- name: Add new children nodes to "graphics" node
+  xml:
+    path: "{{ xml_file }}"
+    xpath: /domain/devices/graphics
+    add_children:
+      - listen:
+          type: address
+          address: 0.0.0.0
+    pretty_print: yes
+
 - name: Add new children nodes to "devices" node
   xml:
     path: "{{ xml_file }}"