.. This work is licensed under a Creative Commons Attribution 4.0 International License. .. http://creativecommons.org/licenses/by/4.0 .. Copyright (c) 2017-2018 Intel, Inc. =============================== MultiCloud infra_workload API =============================== We have two purposes for this API: #. Integrate SO and Multicloud. #. Generic API for SO to talk to different Multicloud plugins. Problem Description =================== Currently HPA flavors are returned by OOF to SO and SO copies these flavors in the Heat template before sending the Heat template to Multicloud. In Casablanca instead of SO making changes in the Heat template the flavor information will be provided to Multicloud and Multicloud will pass this as parameters to HEAT command line. For further detailed design, please refer to https://wiki.onap.org/display/DW/SO+Casablanca+HPA+Design Propose Change ============== Add infrastructure workload --------------------------- API URL: POST http://{msb IP}:{msb port}/api/multicloud/v1/{cloud-owner}/{cloud-region-id}/infra_workload Request Body: >>>>>>>>>>>>> :: { "generic-vnf-id":"", "vf-module-id":"", "oof_directives":{}, "sdnc_directives":{}, "template_type":"", "template_data":{} } oof_directives: ::::::::::::::: :: "directives":[ { "id":"", "type": "vnfc", "directives":[ { "type":"", "attributes":[ { "attribute_name":"", "attribute_value":"" } ] } ] }, { "id":"", "type": "vnf", "directives":[ { "type":"", "attributes":[ { "attribute_name":"", "attribute_value":"" } ] } ] } ] Heat examples ::::::::::::: :: "template_type":"heat", "template_data":{ "files":{ }, "disable_rollback":true, "parameters":{ "flavor":"m1.heat" }, "stack_name":"teststack", "template":{ "heat_template_version":"2013-05-23", "description":"Simple template to test heat commands", "parameters": { "flavor":{ "default":"m1.tiny", "type":"string" } }, "resources":{ "hello_world":{ "type":"OS::Nova::Server", "properties":{ "key_name":"heat_key", "flavor":{ "get_param":"flavor" }, "image":"40be8d1a-3eb9-40de-8abd-43237517384f", "user_data":"#!/bin/bash -xv\necho \"hello world\" > /root/hello-world.txt\n" } } } }, "timeout_mins":60 } Response: >>>>>>>>> Response Codes :::::::::::::: Success ....... +--------------------+----------------------------------------------------------------------+ | Code | Reason | +====================+======================================================================+ | 201 - Created | Resource was created and is ready to use. | +--------------------+----------------------------------------------------------------------+ Error ..... +--------------------+----------------------------------------------------------------------+ | Code | Reason | +====================+======================================================================+ | 400 - Bad Request | Some content in the request was invalid. | +--------------------+----------------------------------------------------------------------+ | 401 - Unauthorized | User must authenticate before making a request. | +--------------------+----------------------------------------------------------------------+ | 409 - Conflict | This operation conflicted with another operation on this resource. | +--------------------+----------------------------------------------------------------------+ Response Body ::::::::::::: :: { "template_type":"heat", "workload_id": "" "template_response": { "stack": { "id": "", "links": [ { "href": "", "rel": "self" } ] } } Delete infrastructure workload ------------------------------ API DELETE URL: http://{msb IP}:{msb port}/api/multicloud/v1/{cloud-owner}/{cloud-region-id}/infra_workload/{workload-id} Response: >>>>>>>>> Response Codes :::::::::::::: Success ....... +--------------------+----------------------------------------------------------------------+ | Code | Reason | +====================+======================================================================+ | 204 - No Content | The server has fulfilled the request by deleting the resource. | +--------------------+----------------------------------------------------------------------+ Error ..... +--------------------+----------------------------------------------------------------------+ | Code | Reason | +====================+======================================================================+ | 400 - Bad Request | Some content in the request was invalid. | +--------------------+----------------------------------------------------------------------+ | 401 - Unauthorized | User must authenticate before making a request. | +--------------------+----------------------------------------------------------------------+ | 404 - Not Found | The requested resource could not be found. | +--------------------+----------------------------------------------------------------------+ | 500 - Internal | Something went wrong inside the service. This should not happen | | Server Error | usually. If it does happen, it means the server has experienced | | | some serious problems. | +--------------------+----------------------------------------------------------------------+ Response Body ::::::::::::: This request does not return anything in the response body. Get infrastructure workload ---------------------------- API GET URL: http://{msb IP}:{msb port}/api/multicloud/v1/{cloud-owner}/{cloud-region-id}/infra_workload/{workload-id} Response: >>>>>>>>> Response Codes :::::::::::::: Success ....... +--------------------+----------------------------------------------------------------------+ | Code | Reason | +====================+======================================================================+ | 200 - OK | Request was successful. | +--------------------+----------------------------------------------------------------------+ Error ..... +--------------------+----------------------------------------------------------------------+ | Code | Reason | +====================+======================================================================+ | 400 - Bad Request | Some content in the request was invalid. | +--------------------+----------------------------------------------------------------------+ | 401 - Unauthorized | User must authenticate before making a request. | +--------------------+----------------------------------------------------------------------+ | 404 - Not Found | The requested resource could not be found. | +--------------------+----------------------------------------------------------------------+ | 500 - Internal | Something went wrong inside the service. This should not happen | | Server Error | usually. If it does happen, it means the server has experienced | | | some serious problems. | +--------------------+----------------------------------------------------------------------+ Response Body ::::::::::::: :: { "template_type":"", "workload_id": "", "workload_status":"CREATE_IN_PROCESS/CREATE_COMPLETE/DELETE_IN_PROCESS/etc" } Work Items ========== #. Work with SO. #. Work with OOF team for oof_directive form. #. Work with SDNC team for sdc_directive form. #. Expose API by broker and each plugin. Tests ===== #. Unit Tests with tox. #. Pairwise test with SO project. #. Integration test with vCPE HPA test. #. CSIT Tests, the input/ouput of broker and each plugin see API design above.