aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/install_dpdk_shared
diff options
context:
space:
mode:
authorRoss Brattain <ross.b.brattain@intel.com>2017-07-24 01:47:30 -0700
committerRoss Brattain <ross.b.brattain@intel.com>2017-10-18 06:48:50 +0000
commitbc6c77102684f69bccdce8509723e00ef38c69cf (patch)
tree9598b6f26fea36629fe881aa53f189cf751bbd5e /ansible/roles/install_dpdk_shared
parentff9f105af636389a7c66dcabf22fb73abed0a833 (diff)
add VNF scale-up template
adjust worker_threads based on number of vcpus Change-Id: Ie5444a64c15711a0e813905c69581f189432fe0b Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
Diffstat (limited to 'ansible/roles/install_dpdk_shared')
0 files changed, 0 insertions, 0 deletions
ighlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
##############################################################################
## Copyright (c) 2018 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
###############################################################################
---
# Sample benchmark task config file
# measure network latency using ping
# This sample use two existing network, one as public network to replace for
# floating ip, one as private network to ping between VMs.

schema: "yardstick:task:0.1"

{% set private_net = private_net or 'private' %}
{% set private_subnet = private_subnet or 'private_subnet' %}
{% set public_net = public_net or 'public' %}
{% set public_subnet = public_subnet or 'public_subnet' %}

scenarios:
-
  type: Ping
  options:
    packetsize: 200
  host: athena.demo
  target: ares.demo

  runner:
    type: Duration
    duration: 60
    interval: 1

  sla:
    max_rtt: 10
    action: monitor

context:
  name: demo
  image: yardstick-image
  flavor: yardstick-flavor
  user: ubuntu

  servers:
    athena:
    ares:

  networks:
    {{ private_net }}:
      net_flags:
        is_existing: true
      subnet: {{ private_subnet }}
    {{ public_net }}:
      net_flags:
        is_existing: true
        is_public: true
      subnet: {{ public_subnet }}