7febd72cce
Previously there are a lot of warning messages of setuptools in the log files of tox jobs. This is mainly caused by test samples because these are in python codes directories. This patch moves test samples from under {heat-translator_root}/translator/tests to under {heat-translator_root}/samples/tests. This patch also contains the following changes: - Remove "skipsdist = True" from tox.ini - Fixed usage.rst command example Change-Id: Ibde711a4778e238076de328641da7b0edd1d4f4b Signed-off-by: Yasufumi Ogawa <yasufum.o@gmail.com> Co-Authored-By: Yoshiro Watanabe <fj3838ct@fujitsu.com>
30 lines
783 B
YAML
30 lines
783 B
YAML
tosca_definitions_version: tosca_simple_yaml_1_2
|
|
|
|
description: >
|
|
Template for deploying one VNF.
|
|
|
|
imports:
|
|
- etsi_nfv_sol001_common_types.yaml
|
|
- etsi_nfv_sol001_vnfd_types.yaml
|
|
|
|
topology_template:
|
|
inputs:
|
|
selected_flavour:
|
|
type: string
|
|
default: simple
|
|
description: VNF deployment flavour selected by the consumer. It is provided in the API
|
|
|
|
node_templates:
|
|
VNF:
|
|
type: tosca.nodes.nfv.VNF
|
|
properties:
|
|
flavour_id: { get_input: selected_flavour }
|
|
descriptor_id: b1bb0ce7-ebca-4fa7-95ed-4840d70a1177
|
|
provider: Sample company
|
|
product_name: Sample VNF
|
|
software_version: '1.0'
|
|
descriptor_version: '1.0'
|
|
vnfm_info:
|
|
- 00:sampleVNFM
|
|
flavour_description: A simple flavour
|