fea9a770e8d8029f619c7f3690fef67abe59e2fd
[demo.git] / heat / vLB / packet_gen_vlb_rackspace.yaml
1 ##########################################################################
2 #
3 #==================LICENSE_START==========================================
4
5 #
6 # Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7 #
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #        http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 #==================LICENSE_END============================================
20 #
21 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 #
23 ##########################################################################
24
25 heat_template_version: 2013-05-23
26
27 description: Heat template to deploy a packet generator for the vLoadBalancer/vDNS demo app for ONAP
28
29 ##############
30 #            #
31 # PARAMETERS #
32 #            #
33 ##############
34
35 parameters:
36   public_net_id:
37     type: string
38     label: Public network name or ID
39     description: Public network that enables remote connection to VNF
40   vpg_image_name:
41     type: string
42     label: Image name or ID
43     description: Image to be used for compute instance
44   vpg_flavor_name:
45     type: string
46     label: Flavor
47     description: Type of instance (flavor) to be used
48   vpg_name_0:
49     type: string
50     label: vPacketGenerator name
51     description: Name of the vPacketGenerator
52   key_name:
53     type: string
54     label: Key pair name
55     description: Public/Private key pair name
56   pub_key:
57     type: string
58     label: Public key
59     description: Public key to be installed on the compute instance
60   repo_url_blob:
61     type: string
62     label: Repository URL
63     description: URL of the repository that hosts the demo packages
64   repo_url_artifacts:
65     type: string
66     label: Repository URL
67     description: URL of the repository that hosts the demo packages
68   vlb_ipaddr:
69     type: string
70     label: Public IP of the vLoadBalancer to which we want to send traffic
71     description: Public IP of the vLoadBalancer to which we want to send traffic
72   install_script_version:
73     type: string
74     label: Installation script version number
75     description: Version number of the scripts that install the vFW demo app
76   demo_artifacts_version:
77     type: string
78     label: Artifacts version used in demo vnfs
79     description: Artifacts (jar, tar.gz) version used in demo vnfs
80
81 #############
82 #           #
83 # RESOURCES #
84 #           #
85 #############
86
87 resources:
88
89   random-str:
90     type: OS::Heat::RandomString
91     properties:
92       length: 4
93
94   my_keypair:
95     type: OS::Nova::KeyPair
96     properties:
97       name:
98         str_replace:
99           template: base_rand
100           params:
101             base: { get_param: key_name }
102             rand: { get_resource: random-str }
103       public_key: { get_param: pub_key }
104       save_private_key: false
105
106  
107   vpg_0:
108     type: OS::Nova::Server
109     properties:
110       image: { get_param: vpg_image_name }
111       flavor: { get_param: vpg_flavor_name }
112       name: { get_param: vpg_name_0 }
113       key_name: { get_resource: my_keypair }
114       networks:
115         - network: { get_param: public_net_id }
116       user_data_format: RAW
117       user_data:
118         str_replace:
119           params:
120             __repo_url_blob__ : { get_param: repo_url_blob }
121             __repo_url_artifacts__ : { get_param: repo_url_artifacts }
122             __vlb_ipaddr__: { get_param: vlb_ipaddr }
123             __demo_artifacts_version__ : { get_param: demo_artifacts_version }
124             __install_script_version__ : { get_param: install_script_version }
125           template: |
126             #!/bin/bash
127
128             # Create configuration files
129             mkdir /opt/config
130             echo "__vlb_ipaddr__" > /opt/config/vlb_ipaddr.txt
131             echo "__repo_url_blob__" > /opt/config/repo_url_blob.txt
132             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
133             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
134             echo "__install_script_version__" > /opt/config/install_script_version.txt
135
136             # Download and run install script
137             curl -k __repo_url_blob__/org.openecomp.demo/vnfs/vlb/__install_script_version__/v_packetgen_install.sh -o /opt/v_packetgen_install.sh
138             cd /opt
139             chmod +x v_packetgen_install.sh
140             ./v_packetgen_install.sh