blob: b1eb75d56af3fb4e938eba29a21237c41b67813d [file] [log] [blame]
Brian O'Connor37f0cc72014-06-06 20:03:05 -07001#!/usr/bin/python
2
3import os
4import sys
5import re
6import argparse
7from stat import ST_MODE, ST_SIZE
8from subprocess import check_output
9
10# Add the Mininet build script directory to the path, so we can import it
11#TODO do a better job finding Mininet
alshabib9a044c12014-11-17 10:36:36 -080012path = os.path.join( '/home', 'mininet', 'mininet','util', 'vm' )
Brian O'Connor37f0cc72014-06-06 20:03:05 -070013path = os.path.expanduser( path )
14if os.path.isdir( path ):
15 sys.path.append( path )
16else:
17 print 'Cannot find Mininet build script. Exiting...'
18 sys.exit( 1 )
19
20# Import required functions from the Mininet build script
21from build import bootAndRun, Prompt, OVFOSNameID, generateOVF, log, build, run
22
23def installONOS( vm, prompt=Prompt ):
24 # start with sendline
25 #TODO consider resizing the HDD
alshabib858bbcc2014-11-17 10:55:56 -080026 url = 'https://gerrit.onosproject.org/gitweb?p=ONOS-VM.git;a=blob_plain;hb=refs/heads/onos-tutorial;f=vm-setup.sh'
Brian O'Connor4c074f42014-08-12 13:39:34 -070027 vm.sendline( ' wget -O vm-setup.sh "%s" | bash' % url ) # space prefix is used to avoid entry in history
Brian O'Connor5b18ef52014-08-05 02:25:53 -070028 vm.expect( prompt, timeout=20 )
29 vm.sendline( 'bash vm-setup.sh' )
Brian O'Connor10d941e2014-06-12 19:55:09 -070030 vm.expect( prompt, timeout=1200 )
Brian O'Connor37f0cc72014-06-06 20:03:05 -070031
alshabib3a13cfb2014-11-17 19:23:04 -080032
33 vm.sendline('sudo su - tutorial1')
34 vm.expect(prompt, timeout=20)
alshabib858bbcc2014-11-17 10:55:56 -080035 vm.sendline( 'git clone https://gerrit.onosproject.org/onos-next/' )
36 vm.expect("Username for 'https://gerrit.onosproject.org':", timeout=30)
alshabibbca6bf22014-11-15 16:38:45 -080037 vm.sendline('vm')
alshabib858bbcc2014-11-17 10:55:56 -080038 vm.expect("Password for 'https://vm@gerrit.onosproject.org':", timeout=30)
alshabib0dd4f392014-11-17 10:46:39 -080039 vm.sendline(os.environ['ONOSPASSWORD'])
alshabibbca6bf22014-11-15 16:38:45 -080040
41 vm.expect( prompt, timeout=1200 )
alshabibff061ee2014-11-17 15:57:10 -080042
43
alshabibbca6bf22014-11-15 16:38:45 -080044 vm.sendline('ssh 127.0.0.1')
45 vm.expect('.*connecting (yes/no)?')
46 vm.sendline('yes')
alshabibf86bfb32014-11-17 22:30:26 -080047 vm.expect(prompt, timeout=30)
alshabibbca6bf22014-11-15 16:38:45 -080048 vm.sendline('exit')
49
50 vm.expect( prompt, timeout=1200 )
alshabibcc130252014-11-17 10:19:35 -080051
alshabib858bbcc2014-11-17 10:55:56 -080052 url = 'https://gerrit.onosproject.org/gitweb?p=ONOS-VM.git;a=blob_plain;hb=refs/heads/onos-tutorial;f=onos-setup.sh'
alshabibcc130252014-11-17 10:19:35 -080053 vm.sendline( ' wget -O onos-setup.sh "%s" | bash' % url ) # space prefix is used to avoid entry in history
54 vm.expect( prompt, timeout=20 )
alshabibbca6bf22014-11-15 16:38:45 -080055 vm.sendline( 'bash onos-setup.sh' )
alshabib411144e2014-11-18 10:56:15 -080056 vm.expect(prompt, timeout=1200)
alshabibbca6bf22014-11-15 16:38:45 -080057
58
Brian O'Connor37f0cc72014-06-06 20:03:05 -070059def vmdk2size( vmdk ):
60 "Return virtual disk size (in bytes) of vmdk image"
61 output = check_output( [ 'file', vmdk ] )
62 assert 'disk image' in output
63 return os.stat( vmdk )[ ST_SIZE ]
64
Brian O'Connor3ca84022014-08-11 19:46:54 -070065def buildONOS( image, out, flavor='trusty64server', installMemory=1024, ovfMemory=1024 ):
Brian O'Connor37f0cc72014-06-06 20:03:05 -070066 if not image:
67 # build VM from flavor
68 #build( flavor )
69 pass
70
71 bootAndRun( image, runFunction=installONOS, memory=installMemory, outputFile=out )
72
73 size = vmdk2size( out + '.vmdk' ) # get vmdk size
74 ovfname = out
75 osname, osid = OVFOSNameID( flavor )
76 print osname, osid
77
78 ovf = generateOVF( name=ovfname, osname=osname, osid=osid,
Brian O'Connor3ca84022014-08-11 19:46:54 -070079 diskname=out+'.vmdk', disksize=size, mem=ovfMemory, cpus=1,
80 vmname='Mininet-Tutorial', vminfo='Mininet Tutorial VM' )
Brian O'Connor37f0cc72014-06-06 20:03:05 -070081 log( '* Generated OVF descriptor file', ovf )
82
83if __name__ == '__main__':
Brian O'Connor3ca84022014-08-11 19:46:54 -070084 parser = argparse.ArgumentParser( description='Mininet Tutorial VM build script' )
Brian O'Connor37f0cc72014-06-06 20:03:05 -070085 parser.add_argument( '-i', '--image', metavar='image', required=True,
86 help='Build from an existing VM image' )
Brian O'Connor3ca84022014-08-11 19:46:54 -070087 parser.add_argument( '-f', '--flavor', default='trusty64server',
88 help='VM flavor to build (e.g. trusty64server)' )
Brian O'Connor37f0cc72014-06-06 20:03:05 -070089 parser.add_argument( 'scripts', nargs='*',
Brian O'Connor3ca84022014-08-11 19:46:54 -070090 help='VM flavor(s) to build (e.g. trusty64server)' )
Brian O'Connor37f0cc72014-06-06 20:03:05 -070091 parser.add_argument( '-z', '--zip', action='store_true',
92 help='archive .ovf and .vmdk into .zip file' )
93 parser.add_argument( '-o', '--out', required=True,
94 help='output file for test image (vmdk)' )
95 args = parser.parse_args()
96
97 print args
98
99 buildONOS( args.image, args.out )
100
101 if args.zip:
102 log( '* Generating .zip file' )
103 run( 'zip %s-ovf.zip %s %s' % ( args.out, args.out + '.ovf', args.out + '.vmdk' ) )