aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/cpu_pin_local_setup/tasks/main.yaml
blob: c25b801be25841be3ce7d080c5f0ee9cfca9649f (plain)
1
2
3
4
5
6

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #75715e } /* Generic.Subheading */
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
.highlight .kt { color: #66d9ef } /* Keyword.Type */
.highlight .ld { color: #e6db74 } /* Literal.Date */
.highlight .m { color: #ae81ff } /* Literal.Number */
.highlight .s { color: #e6db74 } /* Literal.String */
.highlight .na { color: #a6e22e } /* Name.Attribute */
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
.highlight .nc { color: #a6e22e } /* Name.Class */
.highlight .no { color: #66d9ef 
---
##############################################################################
# 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: get nova-compute host
  shell:
    source /etc/yardstick/openstack.creds;
    openstack availability zone list --long | grep nova-compute | sort | awk '{print $7}';
  args:
      executable: /bin/bash
  register: compute_nodes

- name: get existing flavor list
  shell:
    source /etc/yardstick/openstack.creds;
    openstack flavor list | grep "True" | cut -f 2 -d ' ';
  args:
      executable: /bin/bash
  register: flavors

- name: create pinned-cpu and regular host aggregate
  shell:
    source /etc/yardstick/openstack.creds;
    openstack aggregate create pinned-cpu;
    openstack aggregate create regular;
    nova aggregate-set-metadata pinned-cpu pinned=true;
    nova aggregate-set-metadata regular pinned=false;
    nova aggregate-add-host pinned-cpu {{ compute_nodes.stdout_lines[0] }};
    nova aggregate-add-host regular {{ compute_nodes.stdout_lines[1] }};
  args:
      executable: /bin/bash

- name: set flavor default property
  shell:
    source /etc/yardstick/openstack.creds;
    openstack flavor set --property aggregate_instance_extra_specs:pinned=false {{item}};
  args:
      executable: /bin/bash
  with_items:
      - '{{ flavors.stdout_lines }}'

- name: create flavor yardstick-pinned-flavor
  os_nova_flavor:
    cloud: opnfv
    state: present
    name: yardstick-pinned-flavor
    ram: 512
    vcpus: 3
    disk: 3

- name: set yardstick-pinned-flavor property
  shell:
    source /etc/yardstick/openstack.creds;
    openstack flavor set --property hw:cpu_policy=dedicated yardstick-pinned-flavor;
    openstack flavor set --property aggregate_instance_extra_specs:pinned=true yardstick-pinned-flavor;
  args:
      executable: /bin/bash