aboutsummaryrefslogtreecommitdiffstats
path: root/test/vcpe/preload_templates/simple_neutron_heat.yaml
diff options
context:
space:
mode:
authorKang Xi <kang.xi@huawei.com>2018-05-10 14:50:39 -0400
committerKang Xi <kang.xi@huawei.com>2018-05-10 14:59:18 -0400
commitee9f6a171e16ec1e1f60596a15db021dec4831ea (patch)
tree3a928585ff558841a7642b9746e7a32e623f0313 /test/vcpe/preload_templates/simple_neutron_heat.yaml
parent4db256fbea582a546c701c51c2148505adf2851a (diff)
Add preload templates
Change-Id: Ic05e2282416920f30535621404866cf44271acc5 Issue-ID: INT-461 Signed-off-by: Kang Xi <kang.xi@huawei.com>
Diffstat (limited to 'test/vcpe/preload_templates/simple_neutron_heat.yaml')
-rw-r--r--test/vcpe/preload_templates/simple_neutron_heat.yaml21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/vcpe/preload_templates/simple_neutron_heat.yaml b/test/vcpe/preload_templates/simple_neutron_heat.yaml
new file mode 100644
index 000000000..d20c08127
--- /dev/null
+++ b/test/vcpe/preload_templates/simple_neutron_heat.yaml
@@ -0,0 +1,21 @@
+heat_template_version: 2013-05-23
+description: A simple Neutron network
+parameters:
+ network_name:
+ type: string
+ description: Name of the Neutron Network
+ default: ONAP-NW1
+ shared:
+ type: boolean
+ description: Shared amongst tenants
+ default: True
+outputs:
+ network_id:
+ description: Openstack network identifier
+ value: { get_resource: network }
+resources:
+ network:
+ type: OS::Neutron::Net
+ properties:
+ name: { get_param: network_name }
+ shared: { get_param: shared }