diff options
author | Chornyi, TarasX <tarasx.chornyi@intel.com> | 2019-02-18 12:10:44 +0200 |
---|---|---|
committer | Chornyi, TarasX <tarasx.chornyi@intel.com> | 2019-02-18 12:10:44 +0200 |
commit | 6e74a307df379d4f1dbf2d7e66574815b3b95ead (patch) | |
tree | 4d42516bd9f22aa8f302fe2e8ea2908fa3146221 /samples | |
parent | d05cb96c045a9a65d7db424300677f36f3d4f7b4 (diff) |
Change default vports type to int
JIRA: YARDSTICK-1592
Change-Id: Ie64cadcfc9077aed3b4bfeed6055118dc7008eb8
Signed-off-by: Chornyi Taras <tarasx.chornyi@intel.com>
Diffstat (limited to 'samples')
-rw-r--r-- | samples/vnf_samples/nsut/agnostic/agnostic_vnf_topology_trex_tmpl.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/vnf_samples/nsut/agnostic/agnostic_vnf_topology_trex_tmpl.yaml b/samples/vnf_samples/nsut/agnostic/agnostic_vnf_topology_trex_tmpl.yaml index 8af938ba1..f8074f44f 100644 --- a/samples/vnf_samples/nsut/agnostic/agnostic_vnf_topology_trex_tmpl.yaml +++ b/samples/vnf_samples/nsut/agnostic/agnostic_vnf_topology_trex_tmpl.yaml @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. --- -{% set vports = get(extra_args, 'vports', '2') %} +{% set vports = get(extra_args, 'vports', 2) %} nsd:nsd-catalog: nsd: - id: agnostic-topology @@ -49,4 +49,4 @@ nsd:nsd-catalog: - member-vnf-index-ref: '1' vnfd-connection-point-ref: xe{{vport+1}} vnfd-id-ref: tg__0 -{% endfor %}
\ No newline at end of file +{% endfor %} |