summaryrefslogtreecommitdiffstats
path: root/sdnvpn/artifacts/testcase_2bis.yaml
blob: 0319a6dae4da6987cf88cde037ed229c453bb010 (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
heat_template_version: 2013-05-23

description: >
  Template for SDNVPN testcase 2
  tenant separation

parameters:
  flavor:
    type: string
    description: flavor for the servers to be created
    constraints:
      - custom_constraint: nova.flavor
  image_n:
    type: string
    description: image for the servers to be created
    constraints:
      - custom_constraint: glance.image
  av_zone_1:
    type: string
    description: availability zone 1
  id_rsa_key:
    type: string
    description: id_rsa file contents for the vms

  net_1_name:
    type: string
    description: network 1
  subnet_1a_name:
    type: string
    description: subnet 1a name
  subnet_1a_cidr:
    type: string
    description: subnet 1a cidr
  subnet_1b_name:
    type: string
    description: subnet 1b name
  subnet_1b_cidr:
    type: string
    description: subnet 1b cidr
  router_1_name:
    type: string
    description: router 1 name
  net_2_name:
    type: string
    description: network 2
  subnet_2a_name:
    type: string
    description: subnet 2a name
  subnet_2a_cidr:
    type: string
    description: subnet 2a cidr
  subnet_2b_name:
    type: string
    description: subnet 2b name
  subnet_2b_cidr:
    type: string
    description: subnet 2b cidr
  router_2_name:
    type: string
    description: router 2 name

  secgroup_name:
    type: string
    description: security group name
  secgroup_descr:
    type: string
    description: security group slogan

  instance_1_name:
    type: string
    description: instance name
  instance_2_name:
    type: string
    description: instance name
  instance_3_name:
    type: string
    description: instance name
  instance_4_name:
    type: string
    description: instance name
  instance_5_name:
    type: string
    description: instance name

  instance_1_ip:
    type: string
    description: instance fixed ip
  instance_2_ip:
    type: string
    description: instance fixed ip
  instance_3_ip:
    type: string
    description: instance fixed ip
  instance_4_ip:
    type: string
    description: instance fixed ip
  instance_5_ip:
    type: string
    description: instance fixed ip

resources:
  net_1:
    type: OS::Neutron::Net
    properties:
      name: { get_param: net_1_name }
  subnet_1a:
    type: OS::Neutron::Subnet
    properties:
      name: { get_param: subnet_1a_name }
      network: { get_resource: net_1 }
      cidr: { get_param: subnet_1a_cidr }
  net_2:
    type: OS::Neutron::Net
    properties:
      name: { get_param: net_2_name }
  subnet_2b:
    type: OS::Neutron::Subnet
    properties:
      name: { get_param: subnet_2b_name }
      network: { get_resource: net_2 }
      cidr: { get_param: subnet_2b_cidr }

  sec_group:
    type: OS::Neutron::SecurityGroup
    properties:
      name: { get_param: secgroup_name }
      description: { get_param: secgroup_descr }
      rules:
        - protocol: icmp
          remote_ip_prefix: 0.0.0.0/0
        - protocol: tcp
          port_range_min: 22
          port_range_max: 22
          remote_ip_prefix: 0.0.0.0/0

  vm1:
    type: OS::Nova::Server
    depends_on: [ vm2, vm4 ]
    properties:
      name: { get_param: instance_1_name }
      image: { get_param: image_n }
      flavor: { get_param: flavor }
      availability_zone: { get_param: av_zone_1 }
      security_groups:
        - { get_resource: sec_group }
      networks:
        - network: { get_resource: net_1 }
          fixed_ip: { get_param: instance_1_ip }
      user_data_format: RAW
      user_data:
        str_replace:
          template: |
            #!/bin/sh
            sudo mkdir -p /home/cirros/.ssh/
            sudo chown cirros:cirros /home/cirros/.ssh/
            sudo echo $ID_RSA > /home/cirros/.ssh/id_rsa.enc
            sudo base64 -d /home/cirros/.ssh/id_rsa.enc > /home/cirros/.ssh/id_rsa
            sudo chown cirros:cirros /home/cirros/.ssh/id_rsa
            sudo echo $AUTH_KEYS > /home/cirros/.ssh/authorized_keys
            sudo chown cirros:cirros /home/cirros/.ssh/authorized_keys
            chmod 700 /home/cirros/.ssh
            chmod 644 /home/cirros/.ssh/authorized_keys
            chmod 600 /home/cirros/.ssh/id_rsa
            echo gocubsgo > cirros_passwd
            set $IP_VM2 $IP_VM4
            echo will try to ssh to $IP_VM2 and $IP_VM4
            while true; do
             for i do
              ip=$i
              hostname=$(ssh -y -i /home/cirros/.ssh/id_rsa cirros@$ip 'hostname' </dev/zero 2>/dev/null)
              RES=$?
              echo $RES
              if [ \"Z$RES\" = \"Z0\" ]; then echo $ip $hostname;
              else echo $ip 'not reachable';fi;
             done
             sleep 1
            done
          params:
            $IP_VM2: { get_param: instance_2_ip }
            $IP_VM4: { get_param: instance_4_ip }
            $ID_RSA: { get_param: id_rsa_key }
            $AUTH_KEYS: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgnWtSS98Am516e\
              stBsq0jbyOB4eLMUYDdgzsUHsnxFQCtACwwAg9/2uq3FoGUBUWeHZNsT6jcK9\
              sCMEYiS479CUCzbrxcd8XaIlK38HECcDVglgBNwNzX/WDfMejXpKzZG61s98rU\
              ElNvZ0YDqhaqZGqxIV4ejalqLjYrQkoly3R+2k= cirros@test1"
  vm2:
    type: OS::Nova::Server
    properties:
      name: { get_param: instance_2_name }
      image: { get_param: image_n }
      flavor: { get_param: flavor }
      availability_zone: { get_param: av_zone_1 }
      security_groups:
        - { get_resource: sec_group }
      networks:
        - network: { get_resource: net_1 }
          fixed_ip: { get_param: instance_2_ip }
      user_data_format: RAW
      user_data:
        str_replace:
          template: |
            #!/bin/sh
            sudo mkdir -p /home/cirros/.ssh/
            sudo chown cirros:cirros /home/cirros/.ssh/
            sudo echo $ID_RSA > /home/cirros/.ssh/id_rsa.enc
            sudo base64 -d /home/cirros/.ssh/id_rsa.enc > /home/cirros/.ssh/id_rsa
            sudo chown cirros:cirros /home/cirros/.ssh/id_rsa
            sudo echo $AUTH_KEYS > /home/cirros/.ssh/authorized_keys
            sudo chown cirros:cirros /home/cirros/.ssh/authorized_keys
            chmod 700 /home/cirros/.ssh
            chmod 644 /home/cirros/.ssh/authorized_keys
            chmod 600 /home/cirros/.ssh/id_rsa
          params:
            $ID_RSA: { get_param: id_rsa_key }
            $AUTH_KEYS: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgnWtSS98Am516e\
              stBsq0jbyOB4eLMUYDdgzsUHsnxFQCtACwwAg9/2uq3FoGUBUWeHZNsT6jcK9\
              sCMEYiS479CUCzbrxcd8XaIlK38HECcDVglgBNwNzX/WDfMejXpKzZG61s98rU\
              ElNvZ0YDqhaqZGqxIV4ejalqLjYrQkoly3R+2k= cirros@test1"
  vm4:
    type: OS::Nova::Server
    depends_on: vm2
    properties:
      name: { get_param: instance_4_name }
      image: { get_param: image_n }
      flavor: { get_param: flavor }
      availability_zone: { get_param: av_zone_1 }
      security_groups:
        - { get_resource: sec_group }
      networks:
        - network: { get_resource: net_2 }
          fixed_ip: { get_param: instance_4_ip }
      user_data_format: RAW
      user_data:
        str_replace:
          template: |
            #!/bin/sh
            sudo mkdir -p /home/cirros/.ssh/
            sudo chown cirros:cirros /home/cirros/.ssh/
            sudo echo $ID_RSA > /home/cirros/.ssh/id_rsa.enc
            sudo base64 -d /home/cirros/.ssh/id_rsa.enc > /home/cirros/.ssh/id_rsa
            sudo chown cirros:cirros /home/cirros/.ssh/id_rsa
            sudo echo $AUTH_KEYS > /home/cirros/.ssh/authorized_keys
            sudo chown cirros:cirros /home/cirros/.ssh/authorized_keys
            chmod 700 /home/cirros/.ssh
            chmod 644 /home/cirros/.ssh/authorized_keys
            chmod 600 /home/cirros/.ssh/id_rsa
            set $IP_VM1
            echo will try to ssh to $IP_VM1
            while true; do
             for i do
              ip=$i
              hostname=$(ssh -y -i /home/cirros/.ssh/id_rsa cirros@$ip 'hostname' </dev/zero 2>/dev/null)
              RES=$?
              if [ \"Z$RES\" = \"Z0\" ]; then echo $ip $hostname;
              else echo $ip 'not reachable';fi;
             done
             sleep 1
            done
          params:
            $IP_VM1: { get_param: instance_1_ip }
            $ID_RSA: { get_param: id_rsa_key }
            $AUTH_KEYS: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgnWtSS98Am516e\
              stBsq0jbyOB4eLMUYDdgzsUHsnxFQCtACwwAg9/2uq3FoGUBUWeHZNsT6jcK9\
              sCMEYiS479CUCzbrxcd8XaIlK38HECcDVglgBNwNzX/WDfMejXpKzZG61s98rU\
              ElNvZ0YDqhaqZGqxIV4ejalqLjYrQkoly3R+2k= cirros@test1"
            $DROPBEAR_PASSWORD: gocubsgo
outputs:
  net_1_o:
    description: the id of network 1
    value: { get_attr: [net_1, show, id] }
  net_2_o:
    description: the id of network 2
    value: { get_attr: [net_2, show, id] }

  vm1_o:
    description: the deployed vm resource
    value: { get_attr: [vm1, show, name] }
  vm2_o:
    description: the deployed vm resource
    value: { get_attr: [vm2, show, name] }
  vm3_o:
    description: dummy
    value: { get_attr: [vm2, show, name] }
  vm4_o:
    description: the deployed vm resource
    value: { get_attr: [vm4, show, name] }
  vm5_o:
    description: dummy
    value: { get_attr: [vm2, show, name] }