X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_openvim%2Fhttpserver.py;h=0e5bf3973d41de3e82e1a26358f0448242511a33;hb=9cead2a0262deabadc900d580ef312fbc468efc0;hp=e3252b9b975b11391f57922fcc3753d2a9dec9a2;hpb=c8a24a81d511a3340cee0c55c7eb106d30a3e3e1;p=osm%2Fopenvim.git diff --git a/osm_openvim/httpserver.py b/osm_openvim/httpserver.py index e3252b9..0e5bf39 100644 --- a/osm_openvim/httpserver.py +++ b/osm_openvim/httpserver.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- ## -# Copyright 2015 Telefónica Investigación y Desarrollo, S.A.U. +# Copyright 2015 Telefonica Investigacion y Desarrollo, S.A.U. # This file is part of openvim # All Rights Reserved. # @@ -153,7 +153,7 @@ http2db_host={'id':'uuid'} http2db_tenant={'id':'uuid'} http2db_flavor={'id':'uuid','imageRef':'image_id', 'size': 'image_size'} http2db_image={'id':'uuid', 'created':'created_at', 'updated':'modified_at', 'public': 'public'} -http2db_server={'id':'uuid','hostId':'host_id','flavorRef':'flavor_id','imageRef':'image_id','created':'created_at'} +http2db_server={'id':'uuid','hostId':'host_id','flavorRef':'flavor_id','osImageType':'os_image_type','imageRef':'image_id','created':'created_at'} #Unikernels extension http2db_network={'id':'uuid','provider:vlan':'vlan', 'provider:physical': 'provider'} http2db_ofc = {'id': 'uuid'} http2db_port={'id':'uuid', 'network_id':'net_id', 'mac_address':'mac', 'device_owner':'type','device_id':'instance_id','binding:switch_port':'switch_port','binding:vlan':'vlan', 'bandwidth':'Mbps'} @@ -513,7 +513,7 @@ def http_get_hosts(): def get_hosts(): select_, where_, limit_ = filter_query_string(bottle.request.query, http2db_host, - ('id', 'name', 'description', 'status', 'admin_state_up', 'ip_name')) + ('id', 'name', 'description', 'status', 'admin_state_up', 'ip_name', 'hypervisors')) #Unikernels extension myself = config_dic['http_threads'][ threading.current_thread().name ] result, content = myself.db.get_table(FROM='hosts', SELECT=select_, WHERE=where_, LIMIT=limit_) @@ -653,10 +653,11 @@ def http_post_hosts(): thread = ht.host_thread(name=host.get('name',ip_name), user=user, host=ip_name, password=host.get('password'), keyfile=host.get('keyfile', config_dic["host_ssh_keyfile"]), - db=config_dic['db'], db_lock=config_dic['db_lock'], + db=config_dic['db'], test=host_test_mode, image_path=config_dic['host_image_path'], version=config_dic['version'], host_id=content['uuid'], - develop_mode=host_develop_mode, develop_bridge_iface=host_develop_bridge_iface) + develop_mode=host_develop_mode, develop_bridge_iface=host_develop_bridge_iface, + hypervisors=host.get('hypervisors', None)) #Unikernels extension thread.start() config_dic['host_threads'][content['uuid']] = thread @@ -1621,7 +1622,7 @@ def http_post_server_id(tenant_id): return #print json.dumps(server, indent=4) - result, content = ht.create_server(server, config_dic['db'], config_dic['db_lock'], config_dic['mode']=='normal') + result, content = ht.create_server(server, config_dic['db'], config_dic['mode']=='normal') if result >= 0: #Insert instance to database