From e2d35ad054be6cfa395b04616c543e48d98e7e57 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Sun, 30 Aug 2015 12:46:30 -0700 Subject: [PATCH] nova-libvirt requires a /sys/fs/cgroup bindmount Nova-compute is curerntly generating a backtrace when trying to nova boot a VM. The backtrace is described in the bug log. Bind-mounting /sys/fs/cgroup:/sys/fs/cgroup in the libvirt container resolves the problem. Change-Id: I5a56b61fd260728fb76e19bcbdf403b80a4ec5a6 Closes-Bug: #1490326 --- ansible/roles/nova/tasks/start.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/roles/nova/tasks/start.yml b/ansible/roles/nova/tasks/start.yml index 165a2f31d4..c4460a830f 100644 --- a/ansible/roles/nova/tasks/start.yml +++ b/ansible/roles/nova/tasks/start.yml @@ -18,6 +18,7 @@ volumes: - "{{ node_config_directory }}/nova-libvirt/:/opt/kolla/nova-libvirt/:ro" - "/run:/run" + - "/sys/fs/cgroup:/sys/fs/cgroup" - "/var/lib/nova/instances" env: KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"