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
|
##############################################################################
# Copyright (c) 2017 ZTE Coreporation and others.
# feng.xiaowei@zte.com.cn
# 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
##############################################################################
import neutron
import nova
def _config_admin_external_network():
name = 'admin_external'
body = {
'network': {
'name': name,
'admin_state_up': True,
'shared': False,
'provider:network_type': 'flat',
'provider:physical_network': 'physnet1',
'router:external': True
}
}
return name, body
def _config_admin_external_subnet(nid):
return {
'subnets': [
{
'name': 'admin_external_subnet',
'cidr': '172.10.101.0/24',
'ip_version': 4,
'network_id': nid,
'gateway_ip': '172.10.101.1',
'allocation_pools': [{
'start': '172.10.101.2',
'end': '172.10.101.12'
}],
'enable_dhcp': False
}
]
}
def _create_flavor_m1_micro():
name = 'm1.micro'
novaclient = nova.Nova()
if not novaclient.get_flavor_by_name(name):
try:
return novaclient.create_flavor(name, ram=64, vcpus=1, disk=0)
except Exception as error:
print ('_create_flavor_m1_micro failed: {}'.format(str(error)))
else:
print ('Use existing m1.micro flavor')
def main():
neutronclient = neutron.Neutron()
nid = neutronclient.create_network(*(_config_admin_external_network()))
neutronclient.create_subnet(_config_admin_external_subnet(nid))
_create_flavor_m1_micro()
if __name__ == '__main__':
main()
|