diff options
author | JingLu5 <lvjing5@huawei.com> | 2017-03-08 08:10:01 +0000 |
---|---|---|
committer | Jing Lu <lvjing5@huawei.com> | 2017-03-20 09:33:46 +0000 |
commit | cc964b8ac1545873e2c9e307ca04a1ac72438058 (patch) | |
tree | 1235ec1d154f5244cd737d80e2ed8a08f127c842 /ansible/numa_pin_teardown.yaml | |
parent | 0e57aadfce643a23c7efe65739f400de859840cd (diff) |
Add NUMA pinning support for node context
JIRA: YARDSTICK-574
Since the yardstick framework now has supported an improved node type context,
this patch adds support for VM NUMA pinning ability in the node type context.
It provides several scripts that can be used to configurate the controller and
compute nodes
Change-Id: If5eafdca6df1b1196bc17bfdd12aea9f4016752f
Signed-off-by: JingLu5 <lvjing5@huawei.com>
(cherry picked from commit be4fad1e486f6c4bf993335f0aecaa3682a37da8)
Diffstat (limited to 'ansible/numa_pin_teardown.yaml')
-rw-r--r-- | ansible/numa_pin_teardown.yaml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ansible/numa_pin_teardown.yaml b/ansible/numa_pin_teardown.yaml new file mode 100644 index 000000000..c880551f1 --- /dev/null +++ b/ansible/numa_pin_teardown.yaml @@ -0,0 +1,23 @@ +--- +############################################################################## +# Copyright (c) 2017 Huawei Technologies Co.,Ltd and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +- hosts: compute + roles: + - vcpu_pin_set_reset + - restart_nova_compute + +- hosts: controller + roles: + - scheduler_default_filters_reset + - restart_nova_scheduler + +- hosts: localhost + roles: + - numa_pin_local_teardown |