modfied to include the congress charm which is part of OPNFV bundle
[joid.git] / ci / deploy.py
1 import yaml
2 import pprint
3 import socket
4 import fcntl
5 import struct
6 import os
7 import getpass
8
9 def get_ip_address(ifname):
10     s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
11     return socket.inet_ntoa(fcntl.ioctl(
12         s.fileno(),
13         0x8915,  # SIOCGIFADDR
14         struct.pack('256s', ifname[:15])
15     )[20:24])
16
17 with open('labconfig.yaml', 'r') as labf:
18     labcfg = yaml.load(labf)
19
20 opnfvcfg={}
21 opnfvlabcfg={}
22
23 def getFromDict(dataDict, mapList):
24     return reduce(lambda d, k: d[k], mapList, dataDict)
25
26 #lets define the bootstrap section
27 opnfvcfg['demo-maas']={'juju-bootstrap':{'memory': 4096,'name': "bootstrap",\
28                                          'pool': "default", 'vcpus': 4,\
29                                          'disk_size': "60G", 'arch': "amd64",\
30                                          'interfaces':[]},\
31                        'maas':{'memory': 4096,'pool': "default", 'vcpus': 4,\
32                                'disk_size': "160G", 'arch': "amd64", 'interfaces':[],\
33                                'name':"",'network_config':[],'node_group_ifaces':[],\
34                                'nodes':[],'password': 'ubuntu', 'user':'ubuntu',\
35                                'release': 'trusty', 'apt_sources':[],'ip_address':'',\
36                                'boot_source':{'keyring_filename':\
37                                                 "/usr/share/keyrings/ubuntu-cloudimage-keyring.gpg",\
38                                              'url': \
39                                              "http://maas.ubuntu.com/images/ephemeral-v2/releases/",\
40                                              'selections':{'1':{'arches':'amd64','labels':'release',\
41                                                                 'os':'ubuntu','release':'xenial',\
42                                                                 'subarches':'*'
43                                                                }\
44                                                           }\
45                                              },\
46                               'settings':{'maas_name':'','upstream_dns':'',\
47                                           'main_archive':"http://us.archive.ubuntu.com/ubuntu"\
48                                          },\
49                               'virsh':{'rsa_priv_key':'/home/ubuntu/.ssh/id_rsa',
50                                        'rsa_pub_key':'/home/ubuntu/.ssh/id_rsa.pub',
51                                        'uri':''
52                                       }\
53                               }\
54                       }
55
56 opnfvlabcfg['opnfv']={'ext-port':'','floating-ip-range':'','dataNetwork':'','ceph-disk':'/srv/',\
57                       'storageNetwork':'','interface-enable':""}
58
59 opnfvcfg['demo-maas']['maas']['apt_sources'].append("ppa:maas/stable")
60 opnfvcfg['demo-maas']['maas']['apt_sources'].append("ppa:juju/stable")
61
62 # lets modify the maas general settings:
63
64 updns = getFromDict(labcfg, ["lab","racks",0,"dns"])
65 opnfvcfg["demo-maas"]["maas"]["settings"]["upstream_dns"]=updns
66
67 location = getFromDict(labcfg, ["lab","location"])
68 rack = getFromDict(labcfg, ["lab","racks",0,"rack"])
69 value=location+rack
70
71 opnfvcfg["demo-maas"]["maas"]["settings"]["maas_name"]=value
72 opnfvcfg["demo-maas"]["maas"]["name"]="opnfv-"+value
73
74 ethbrAdm=""
75 ethbrAdmin=""
76
77 c=0
78 y=0
79 #z=0
80
81 while c < len(labcfg["opnfv"]["spaces"]):
82     brtype = getFromDict(labcfg, ["opnfv","spaces",c,"type"])
83     brname = getFromDict(labcfg, ["opnfv","spaces",c,"bridge"])
84     brcidr = getFromDict(labcfg, ["opnfv","spaces",c,"cidr"])
85 #
86     if brtype == "admin":
87         ethbrAdmin = getFromDict(labcfg, ["opnfv","spaces",c,"bridge"])
88         brgway = getFromDict(labcfg, ["opnfv","spaces",c,"gateway"])
89         tmpcidr = brcidr[:-4]
90         opnfvlabcfg["opnfv"]["admNetwork"]=tmpcidr+"2"
91
92         nodegroup={"device": "eth"+str(y), "ip": tmpcidr+"5","subnet_mask": "255.255.255.0", \
93                    "broadcast_ip": tmpcidr+"255", "router_ip": brgway,\
94                    "static_range":{"high":tmpcidr+"80","low":tmpcidr+"50"},\
95                    "dynamic_range":{"high":tmpcidr+"250","low":tmpcidr+"81"}}
96
97         ethbrAdm = ('auto lo\n'
98                     '    iface lo inet loopback\n\n'
99                     'auto eth'+str(y)+'\n'
100                     '    iface eth'+str(y)+' inet static\n'
101                     '    address '+tmpcidr+'5\n'
102                     '    netmask 255.255.255.0\n'
103                     '    gateway '+brgway+'\n'
104                     '    dns-nameservers '+updns+' '+tmpcidr+'5 127.0.0.1\n')
105
106         opnfvcfg['demo-maas']['maas']['ip_address']=tmpcidr+"5"
107         opnfvcfg['demo-maas']['maas']['interfaces'].append("bridge="+brname+",model=virtio")
108         opnfvcfg['demo-maas']['juju-bootstrap']['interfaces'].append("bridge="+brname+",model=virtio")
109         opnfvcfg["demo-maas"]["maas"]["node_group_ifaces"].append(nodegroup)
110         y=y+1
111     elif brtype:
112         opnfvcfg["demo-maas"]["maas"]["interfaces"].append("bridge="+brname+",model=virtio")
113         brgway = getFromDict(labcfg, ["opnfv","spaces",c,"gateway"])
114         if brtype != "external":
115             tmpcidr = brcidr[:-4]
116             if brgway:
117                 nodegroup={"device": "eth"+str(y), "ip": tmpcidr+"5","subnet_mask": "255.255.255.0", \
118                            "broadcast_ip": tmpcidr+"255", "management": 1, "router_ip": brgway,\
119                            "static_range":{"high":tmpcidr+"80","low":tmpcidr+"50"},\
120                            "dynamic_range":{"high":tmpcidr+"250","low":tmpcidr+"81"}}
121             else:
122                 nodegroup={"device": "eth"+str(y), "ip": tmpcidr+"5","subnet_mask": "255.255.255.0", \
123                            "broadcast_ip": tmpcidr+"255", "management": 1, \
124                            "static_range":{"high":tmpcidr+"80","low":tmpcidr+"50"},\
125                            "dynamic_range":{"high":tmpcidr+"250","low":tmpcidr+"81"}}
126             opnfvcfg["demo-maas"]["maas"]["node_group_ifaces"].append(nodegroup)
127             ethbrAdm  = (ethbrAdm+'\n'
128                         'auto eth'+str(y)+'\n'
129                         '    iface eth'+str(y)+' inet static\n'
130                         '    address '+tmpcidr+'5\n'
131                         '    netmask 255.255.255.0\n')
132             y=y+1
133         if brtype == "public":
134             opnfvcfg["demo-maas"]["juju-bootstrap"]["interfaces"].append("bridge="+brname+",model=virtio")
135         if brtype == "external":
136             ipaddress = getFromDict(labcfg, ["opnfv","spaces",c,"ipaddress"])
137             ethbrAdm  = (ethbrAdm+'\n'
138                         'auto eth'+str(y)+'\n'
139                         '    iface eth'+str(y)+' inet static\n'
140                         '    address '+ipaddress+'\n'
141                         '    netmask 255.255.255.0\n')
142             opnfvcfg["demo-maas"]["juju-bootstrap"]["interfaces"].append("bridge="+brname+",model=virtio")
143         if brtype == "data":
144             opnfvlabcfg["opnfv"]["dataNetwork"]=brcidr
145         if brtype == "storage":
146             opnfvlabcfg["opnfv"]["storageNetwork"]=brcidr
147
148     c=c+1
149
150 # lets modify the maas general settings:
151 value = get_ip_address(ethbrAdmin)
152 value = "qemu+ssh://"+getpass.getuser()+"@"+value+"/system"
153 opnfvcfg['demo-maas']['maas']['virsh']['uri']=value
154 opnfvcfg['demo-maas']['maas']['network_config']=ethbrAdm
155
156 if len(labcfg["lab"]["racks"][0]["nodes"]) < 1:
157     print("looks like virtual deployment where nodes were not defined")
158     opnfvcfg["demo-maas"]["maas"]["nodes"].remove()
159     exit()
160
161 #lets insert the node details here:
162 c=0
163 ifnamelist=[]
164 #
165 while c < len(labcfg["lab"]["racks"][0]["nodes"]):
166     valuemac=[]
167     y = 0
168     # setup value of name and tags accordigly
169     noderoleslist = labcfg["lab"]["racks"][0]["nodes"][c]["roles"]
170     noderoles = " ".join(noderoleslist)
171
172     valuetype = getFromDict(labcfg, ["lab","racks",0,"nodes",c, "power", "type"])
173     namevalue = labcfg["lab"]["racks"][0]["nodes"][c]["name"]
174     valuearc = getFromDict(labcfg, ["lab","racks",0,"nodes",c, "architecture"])
175     # setup value of architecture
176     if valuearc == "x86_64":
177         valuearc="amd64/generic"
178
179     if valuetype == "wakeonlan":
180         macvalue = getFromDict(labcfg, ["lab","racks",0,"nodes",c, "power", "mac_address"])
181         power={"type": "ether_wake", "mac_address": macvalue}
182     if valuetype == "ipmi":
183         valueaddr = getFromDict(labcfg, ["lab","racks",0,"nodes",c, "power", "address"])
184         valueuser = getFromDict(labcfg, ["lab","racks",0,"nodes",c, "power", "user"])
185         valuepass = getFromDict(labcfg, ["lab","racks",0,"nodes",c, "power", "pass"])
186         valuedriver = "LAN_2_0"
187         power={"type": valuetype, "address": valueaddr,"user": valueuser,\
188                "pass": valuepass, "driver": valuedriver}
189
190     opnfvcfg["demo-maas"]["maas"]["nodes"].append({"name": namevalue, \
191              "architecture":valuearc,"interfaces":[],"mac_addresses":[],\
192              "power":power,'tags':noderoles})
193     y = 0
194     while y < len(labcfg["lab"]["racks"][0]["nodes"][c]["nics"]):
195         valuespaces = labcfg["lab"]["racks"][0]["nodes"][c]["nics"][y]["spaces"]
196         valueifname = labcfg["lab"]["racks"][0]["nodes"][c]["nics"][y]["ifname"]
197         if "admin" not in valuespaces:
198             ifnamelist += [valueifname]
199         valueifmac = labcfg["lab"]["racks"][0]["nodes"][c]["nics"][y]["mac"][0]
200         valuemac += labcfg["lab"]["racks"][0]["nodes"][c]["nics"][y]["mac"]
201         opnfvcfg["demo-maas"]["maas"]["nodes"][c]["interfaces"]\
202                  .append({"name":valueifname,"mac_address":valueifmac,"mode": "auto"})
203
204         y=y+1
205
206     if valueifmac:
207        opnfvcfg["demo-maas"]["maas"]["nodes"][c]['mac_addresses']=valuemac
208
209     c=c+1
210
211 opnfvlabcfg["opnfv"]["floating-ip-range"]=labcfg["lab"]["racks"][0]["floating-ip-range"]
212 opnfvlabcfg["opnfv"]["ext-port"]=labcfg["lab"]["racks"][0]["ext-port"]
213 opnfvlabcfg["opnfv"]["ceph-disk"]=labcfg["opnfv"]["storage"][0]["disk"]
214 opnfvlabcfg["opnfv"]["interface-enable"]=",".join(list(set(ifnamelist)))
215
216 with open('deployment.yaml', 'wa') as opnfvf:
217    yaml.dump(opnfvcfg, opnfvf, default_flow_style=False)
218
219 with open('deployconfig.yaml', 'wa') as opnfvf:
220    yaml.dump(opnfvlabcfg, opnfvf, default_flow_style=False)