summaryrefslogtreecommitdiffstats
path: root/tests/blueprints/tosca-vnfd-hello-ves/blueprint.yaml
blob: c6524234584d26f5d4a34b5ddf7ba09839962a1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
tosca_definitions_version: tosca_simple_profile_for_nfv_1_0_0

description: Hello VES

metadata:
  template_name: tosca-vnfd-hello-ves

topology_template:
  node_templates:
    VDU1:
      type: tosca.nodes.nfv.VDU.Tacker
      capabilities:
        nfv_compute:
          properties:
            num_cpus: 1
            mem_size: 1024 MB
            disk_size: 4 GB
      properties:
        image: models-xenial-server
        availability_zone: nova
        mgmt_driver: noop
        config_drive: true
        user_data_format: RAW
        user_data: |
          #!/bin/bash
          set -x
          mkdir /home/ubuntu
          chown -R ubuntu /home/ubuntu
          mkdir /home/ubuntu/.ssh
          cat << EOM >/home/ubuntu/.ssh/authorized_keys
          <pubkey>
          EOM
          sudo mount /dev/sr0 /mnt/
          mkdir /tmp/www
          cd /tmp/www
          mkdir html
          cat >Dockerfile <<EOM
          FROM nginx
          COPY html /usr/share/nginx/html
          EOM
          host=$(hostname)
          id=$(cut -d ',' -f 3 /mnt/openstack/latest/meta_data.json)
          cat <<EOM >html/index.html
          <!DOCTYPE html>
          <html>
          <head>
          <title>Hello World!</title>
          <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1"/>
          <style>
          body { width: 100%; background-color: white; color: black; padding: 0px; margin: 0px; font-family: sans-serif; font-size:100%; }
          </style>
          </head>
          <body>
          <large>Welcome to OPNFV @ $host!</large><br/>
          <a href="http://wiki.opnfv.org"><img src="https://www.opnfv.org/sites/all/themes/opnfv/logo.png"></a>
          <div>
          <p>Instance ID fom config drive file /mnt/openstack/latest/meta_data.json></p>
          <pre>
          $id
          </pre>
          <p>Server setup completed at $(date)</p>
          </div>
          </body></html>
          EOM
          wget -O /tmp/www/html/favicon.ico https://git.opnfv.org/models/plain/tests/blueprints/tosca-vnfd-3node-tacker/favicon.ico
          sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
          curl -fsSL https://apt.dockerproject.org/gpg | sudo apt-key add -
          sudo apt-key update
          echo "deb https://apt.dockerproject.org/repo ubuntu-xenial main" >~/dockerrepo
          sudo tee -a /etc/apt/sources.list.d/docker.list ~/dockerrepo
          sudo add-apt-repository "deb https://apt.dockerproject.org/repo/ ubuntu-xenial main"
          sudo apt-get update
          sudo apt-get install -y docker-engine
          sudo docker pull nginx
          sudo docker build -t vhello .
          sudo docker run --name vHello -d -p 80:80 vhello
        config: |
          param0: key1
          param1: key2

    CP11:
      type: tosca.nodes.nfv.CP.Tacker
      properties:
        management: true
        anti_spoofing_protection: false
      requirements:
        - virtualLink:
            node: VL1
        - virtualBinding:
            node: VDU1

    CP12:
      type: tosca.nodes.nfv.CP.Tacker
      properties:
        anti_spoofing_protection: false
      requirements:
        - virtualLink:
            node: VL2
        - virtualBinding:
            node: VDU1

    VDU2:
      type: tosca.nodes.nfv.VDU.Tacker
      capabilities:
        nfv_compute:
          properties:
            num_cpus: 1
            mem_size: 1024 MB
            disk_size: 4 GB
      properties:
        image: models-xenial-server
        availability_zone: nova
        mgmt_driver: noop
        config_drive: true
        user_data_format: RAW
        user_data: |
          #!/bin/bash
          set -x
          mkdir /home/ubuntu
          chown -R ubuntu /home/ubuntu
          mkdir /home/ubuntu/.ssh
          cat << EOM >/home/ubuntu/.ssh/authorized_keys
          <pubkey>
          EOM
          sudo mount /dev/sr0 /mnt/
          mkdir /tmp/www
          cd /tmp/www
          mkdir html
          cat >Dockerfile <<EOM
          FROM nginx
          COPY html /usr/share/nginx/html
          EOM
          host=$(hostname)
          id=$(cut -d ',' -f 3 /mnt/openstack/latest/meta_data.json)
          cat <<EOM >html/index.html
          <!DOCTYPE html>
          <html>
          <head>
          <title>Hello World!</title>
          <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1"/>
          <style>
          body { width: 100%; background-color: white; color: black; padding: 0px; margin: 0px; font-family: sans-serif; font-size:100%; }
          </style>
          </head>
          <body>
          <large>Welcome to OPNFV @ $host!</large><br/>
          <a href="http://wiki.opnfv.org"><img src="https://www.opnfv.org/sites/all/themes/opnfv/logo.png"></a>
          <div>
          <p>Instance ID fom config drive file /mnt/openstack/latest/meta_data.json></p>
          <pre>
          $id
          </pre>
          <p>Server setup completed at $(date)</p>
          </div>
          </body></html>
          EOM
          wget -O /tmp/www/html/favicon.ico https://git.opnfv.org/models/plain/tests/blueprints/tosca-vnfd-3node-tacker/favicon.ico
          sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
          curl -fsSL https://apt.dockerproject.org/gpg | sudo apt-key add -
          sudo apt-key update
          echo "deb https://apt.dockerproject.org/repo ubuntu-xenial main" >~/dockerrepo
          sudo tee -a /etc/apt/sources.list.d/docker.list ~/dockerrepo
          sudo add-apt-repository "deb https://apt.dockerproject.org/repo/ ubuntu-xenial main"
          sudo apt-get update
          sudo apt-get install -y docker-engine
          sudo docker pull nginx
          sudo docker build -t vhello .
          sudo docker run --name vHello -d -p 80:80 vhello
        config: |
          param0: key1
          param1: key2

    CP21:
      type: tosca.nodes.nfv.CP.Tacker
      properties:
        management: true
        anti_spoofing_protection: false
      requirements:
        - virtualLink:
            node: VL1
        - virtualBinding:
            node: VDU2

    CP22:
      type: tosca.nodes.nfv.CP.Tacker
      properties:
        anti_spoofing_protection: false
      requirements:
        - virtualLink:
            node: VL2
        - virtualBinding:
            node: VDU2

    VDU3:
      type: tosca.nodes.nfv.VDU.Tacker
      capabilities:
        nfv_compute:
          properties:
            num_cpus: 1
            mem_size: 1024 MB
            disk_size: 4 GB
      properties:
        image: models-xenial-server
        availability_zone: nova
        mgmt_driver: noop
        user_data_format: RAW
        user_data: |
          #!/bin/bash
          set -x
          mkdir /home/ubuntu
          chown -R ubuntu /home/ubuntu
          mkdir /home/ubuntu/.ssh
          cat << EOM >/home/ubuntu/.ssh/authorized_keys
          <pubkey>
          EOM
          cat << EOF >/tmp/setup.sh
          echo "1" | sudo tee /proc/sys/net/ipv4/ip_forward
          sudo sysctl net.ipv4.ip_forward=1
          sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -m state \\
          --state NEW -m statistic --mode nth --every 2 --packet 0 \\
          -j DNAT --to-destination <vdu1_ip>:80
          sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -m state \\
          --state NEW -m statistic --mode nth --every 2 --packet 0 \\
          -j DNAT --to-destination <vdu2_ip>:80
          sudo iptables -t nat -A POSTROUTING -j MASQUERADE
          EOF
          bash /tmp/setup.sh
        config: |
          param0: key1
          param1: key2

        config: |
          param0: key1
          param1: key2

    CP31:
      type: tosca.nodes.nfv.CP.Tacker
      properties:
        management: true
        anti_spoofing_protection: false
      requirements:
        - virtualLink:
            node: VL1
        - virtualBinding:
            node: VDU3

    CP32:
      type: tosca.nodes.nfv.CP.Tacker
      properties:
        anti_spoofing_protection: false
      requirements:
        - virtualLink:
            node: VL2
        - virtualBinding:
            node: VDU3

    VDU4:
      type: tosca.nodes.nfv.VDU.Tacker
      capabilities:
        nfv_compute:
          properties:
            num_cpus: 1
            mem_size: 1024 MB
            disk_size: 4 GB
      properties:
        image: models-xenial-server
        availability_zone: nova
        mgmt_driver: noop
        user_data_format: RAW
        user_data: |
          #!/bin/bash
          set -x
          mkdir /home/ubuntu
          chown -R ubuntu /home/ubuntu
          mkdir /home/ubuntu/.ssh
          cat << EOM >/home/ubuntu/.ssh/authorized_keys
          <pubkey>
          EOM
        config: |
          param0: key1
          param1: key2

    CP41:
      type: tosca.nodes.nfv.CP.Tacker
      properties:
        management: true
        anti_spoofing_protection: false
      requirements:
        - virtualLink:
            node: VL1
        - virtualBinding:
            node: VDU4

    CP42:
      type: tosca.nodes.nfv.CP.Tacker
      properties:
        anti_spoofing_protection: false
      requirements:
        - virtualLink:
            node: VL2
        - virtualBinding:
            node: VDU4

    VL1:
      type: tosca.nodes.nfv.VL
      properties:
        network_name: vnf_mgmt
        vendor: Tacker

    VL2:
      type: tosca.nodes.nfv.VL
      properties:
        network_name: vnf_private
        vendor: Tacker