diff options
author | JingLu5 <lvjing5@huawei.com> | 2017-03-08 08:10:01 +0000 |
---|---|---|
committer | JingLu5 <lvjing5@huawei.com> | 2017-03-08 08:51:33 +0000 |
commit | be4fad1e486f6c4bf993335f0aecaa3682a37da8 (patch) | |
tree | ad60f03bcbdf509fdb3df07093ea056afac25c82 /ansible/numa_pin_teardown.yaml | |
parent | 501175fbb095a771f5f1b9fb80dcf729192214d2 (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>
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 |