aboutsummaryrefslogtreecommitdiffstats
path: root/legacy/config/SampleHeat.yaml
diff options
context:
space:
mode:
authorzhihui wu <wu.zhihui1@zte.com.cn>2018-03-13 09:56:09 +0800
committerzhihui wu <wu.zhihui1@zte.com.cn>2018-03-13 09:56:09 +0800
commit080dea3ed5dca2a72258811cf6522ed69b11ffff (patch)
tree1a2e8c197d2ca3222e04176294509bca47d13fc1 /legacy/config/SampleHeat.yaml
parent0e105924554824f9d08df24678e83e174fef2197 (diff)
Delete part of code under qtip/legacy
These code is obsolete. Change-Id: I0fc2b12847aaa30f713cf7578a92aae912153dd6 Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
Diffstat (limited to 'legacy/config/SampleHeat.yaml')
-rw-r--r--legacy/config/SampleHeat.yaml74
1 files changed, 0 insertions, 74 deletions
diff --git a/legacy/config/SampleHeat.yaml b/legacy/config/SampleHeat.yaml
deleted file mode 100644
index 650c6a0c..00000000
--- a/legacy/config/SampleHeat.yaml
+++ /dev/null
@@ -1,74 +0,0 @@
-##############################################################################
-# Copyright (c) 2017 ZTE Corporation 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
-##############################################################################
-heat_template_version: 2015-04-30
-
-description: >
- Used to run VMs for QTIP
-
-parameters:
- image:
- type: string
- description: Name of the image
- default: QTIP_CentOS
-
- external_net_name:
- type: string
- description: Name of the external network which management network will connect to
- default: admin_floating_net
-
-resources:
- flavor:
- type: OS::Nova::Flavor
- properties:
- ram: 8192
- vcpus: 8
- disk: 80
-
- network:
- type: OS::Neutron::Net
- properties:
- name: qtip_net
-
- subnet:
- type: OS::Neutron::Subnet
- properties:
- name: qtip_subnet
- ip_version: 4
- cidr: 192.168.0.0/24
- network: { get_resource: network }
- dns_nameservers: [8.8.8.8]
-
- management_router:
- type: OS::Neutron::Router
- properties:
- name: qtip_router
- external_gateway_info:
- network: { get_param: external_net_name }
-
- management_router_interface:
- type: OS::Neutron::RouterInterface
- properties:
- router: { get_resource: management_router }
- subnet: { get_resource: subnet }
-
- security_group:
- type: OS::Neutron::SecurityGroup
- properties:
- name: qtip_security_group
- rules:
- - port_range_min: 22
- port_range_max: 5201
- protocol: tcp
- - port_range_min: 22
- port_range_max: 5201
- protocol: udp
- - protocol: icmp
-
-outputs:
- description: 'none'