diff options
author | JingLu5 <lvjing5@huawei.com> | 2017-03-08 03:28:27 +0000 |
---|---|---|
committer | JingLu5 <lvjing5@huawei.com> | 2017-03-13 07:16:54 +0000 |
commit | f138b480ea4c9954d107555d7a46ec3d4375653f (patch) | |
tree | bf0c6c68e13491c7e4c40f31db4bb24b43d64060 /ansible/roles/restart_nova_compute/tasks | |
parent | 106eae2d19ca59e27262a7d8c3cd4501507697ff (diff) |
Add CPU pinning support for node context
JIRA: YARDSTICK-573
Since the yardstick framework now has supported an improved node type context,
this patch adds support for VM vcpu pinning ability in the node type context.
It provides several scripts that can be used to configurate the controller and
compute nodes.
Change-Id: If2c6e7b1b85ff78b9d2a5997bf03bdc6877aaf74
Signed-off-by: JingLu5 <lvjing5@huawei.com>
Diffstat (limited to 'ansible/roles/restart_nova_compute/tasks')
-rw-r--r-- | ansible/roles/restart_nova_compute/tasks/main.yaml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ansible/roles/restart_nova_compute/tasks/main.yaml b/ansible/roles/restart_nova_compute/tasks/main.yaml new file mode 100644 index 000000000..77c2d4dca --- /dev/null +++ b/ansible/roles/restart_nova_compute/tasks/main.yaml @@ -0,0 +1,14 @@ +--- +############################################################################## +# 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 +############################################################################## + +- name: restart nova compute service + service: + name: nova-compute + state: restarted |