aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKubi <jean.gaoliang@huawei.com>2017-07-29 02:59:44 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-07-29 02:59:44 +0000
commit362f0330b4456414b9b05e4cc0e9e7db0c753722 (patch)
tree337c13ef8b36d8b3f12bd435c17eb397bfaa749a
parent7397f294a448223f8db31404e2d0294065f6f246 (diff)
parent3016d172bc92e3f5c2447ec7f182d22de6d749dc (diff)
Merge "bugfix: enable vlan and physical netwok able to set"
-rw-r--r--samples/ping.yaml11
1 files changed, 10 insertions, 1 deletions
diff --git a/samples/ping.yaml b/samples/ping.yaml
index 0c1783c0b..6a19d260b 100644
--- a/samples/ping.yaml
+++ b/samples/ping.yaml
@@ -12,6 +12,9 @@
schema: "yardstick:task:0.1"
+{% set provider = provider or none %}
+{% set physical_network = physical_network or 'physnet1' %}
+{% set segmentation_id = segmentation_id or none %}
scenarios:
-
type: Ping
@@ -49,4 +52,10 @@ context:
networks:
test:
cidr: '10.0.1.0/24'
-
+ {% if provider == "vlan" %}
+ provider: {{provider}}
+ physical_network: {{physical_network}}
+ {% if segmentation_id %}
+ segmentation_id: {{segmentation_id}}
+ {% endif %}
+ {% endif %}