resp = sess.get(req_resouce, endpoint_filter=service)
content = resp.json()
compute_limits = content['limits']['absolute']
-
+
#get total resource of this cloud region
- req_resouce = "/os-hypervisors/statistics"
- resp = sess.get(req_resouce, endpoint_filter=service)
- content = resp.json()
- hypervisor_statistics = content['hypervisor_statistics']
+ try:
+ req_resouce = "/os-hypervisors/statistics"
+ self._logger.info("check os-hypervisors statistics> URI:%s" % req_resouce)
+ resp = sess.get(req_resouce, endpoint_filter=service)
+ self._logger.info("check os-hypervisors statistics> status:%s" % resp.status_code)
+ content = resp.json()
+ hypervisor_statistics = content['hypervisor_statistics']
+ self._logger.debug("check os-hypervisors statistics> resp data:%s" % content)
+ except HttpError as e:
+ if e.http_status == status.HTTP_403_FORBIDDEN:
+ # Due to non administrator account cannot get hypervisor data,
+ # so construct enough resource data
+ conVCPUS = int(resource_demand['vCPU'])
+ conFreeRamMB = int(resource_demand['Memory'])
+ conFreeDiskGB = int(resource_demand['Storage'])
+ self._logger.info("Non administator forbidden to access hypervisor statistics data")
+ hypervisor_statistics = {'vcpus_used':0, 'vcpus':conVCPUS, 'free_ram_mb':conFreeRamMB, 'free_disk_gb':conFreeDiskGB}
+ else:
+ # non forbiden exeption will be redirected
+ raise e
#get storage limit for this tenant
service['service_type'] = 'volumev2'
remainStorage = remainHypervisorStorage
# compare resource demanded with available
- if (int(resource_demand['vCPU']) >= remainVCPU):
+ if (int(resource_demand['vCPU']) > remainVCPU):
hasEnoughResource = False
- elif (int(resource_demand['Memory']) >= remainMEM):
+ elif (int(resource_demand['Memory']) > remainMEM):
hasEnoughResource = False
- elif (int(resource_demand['Storage']) >= remainStorage):
+ elif (int(resource_demand['Storage']) > remainStorage):
hasEnoughResource = False
else:
hasEnoughResource = True
compute_limits = content['limits']['absolute']
#get total resource of this cloud region
- req_resouce = "/os-hypervisors/statistics"
- resp = sess.get(req_resouce, endpoint_filter=service)
- content = resp.json()
- hypervisor_statistics = content['hypervisor_statistics']
+ try:
+ req_resouce = "/os-hypervisors/statistics"
+ self._logger.info("check os-hypervisors statistics> URI:%s" % req_resouce)
+ resp = sess.get(req_resouce, endpoint_filter=service)
+ self._logger.info("check os-hypervisors statistics> status:%s" % resp.status_code)
+ content = resp.json()
+ hypervisor_statistics = content['hypervisor_statistics']
+ self._logger.debug("check os-hypervisors statistics> resp data:%s" % content)
+ except HttpError as e:
+ if e.http_status == status.HTTP_403_FORBIDDEN:
+ # Due to non administrator account cannot get hypervisor data,
+ # so construct enough resource data
+ conVCPUS = int(resource_demand['vCPU'])
+ conFreeRamMB = int(resource_demand['Memory'])
+ conFreeDiskGB = int(resource_demand['Storage'])
+ self._logger.info("Non administator forbidden to access hypervisor statistics data")
+ hypervisor_statistics = {'vcpus_used':0, 'vcpus':conVCPUS, 'free_ram_mb':conFreeRamMB, 'free_disk_gb':conFreeDiskGB}
+ else:
+ # non forbiden exeption will be redirected
+ raise e
#get storage limit for this tenant
service['service_type'] = 'volumev2'
remainStorage = remainHypervisorStorage
# compare resource demanded with available
- if (int(resource_demand['vCPU']) >= remainVCPU):
+ if (int(resource_demand['vCPU']) > remainVCPU):
hasEnoughResource = False
- elif (int(resource_demand['Memory']) >= remainMEM):
+ elif (int(resource_demand['Memory']) > remainMEM):
hasEnoughResource = False
- elif (int(resource_demand['Storage']) >= remainStorage):
+ elif (int(resource_demand['Storage']) > remainStorage):
hasEnoughResource = False
else:
hasEnoughResource = True
if e.http_status == status.HTTP_403_FORBIDDEN:
# Due to non administrator account cannot get hypervisor data,
# so construct enough resource data
- conVCPUS = int(resource_demand['vCPU']) + 2
- conFreeRamMB = int(resource_demand['Memory']) + 2
- conFreeDiskGB = int(resource_demand['Storage']) + 2
+ conVCPUS = int(resource_demand['vCPU'])
+ conFreeRamMB = int(resource_demand['Memory'])
+ conFreeDiskGB = int(resource_demand['Storage'])
self._logger.info("Non administator forbidden to access hypervisor statistics data")
hypervisor_statistics = {'vcpus_used':0, 'vcpus':conVCPUS, 'free_ram_mb':conFreeRamMB, 'free_disk_gb':conFreeDiskGB}
else:
remainStorage = remainHypervisorStorage
# compare resource demanded with available
- if (int(resource_demand['vCPU']) >= remainVCPU):
+ if (int(resource_demand['vCPU']) > remainVCPU):
hasEnoughResource = False
- elif (int(resource_demand['Memory']) >= remainMEM):
+ elif (int(resource_demand['Memory']) > remainMEM):
hasEnoughResource = False
- elif (int(resource_demand['Storage']) >= remainStorage):
+ elif (int(resource_demand['Storage']) > remainStorage):
hasEnoughResource = False
else:
hasEnoughResource = True