Andre Carneiro 24588e857b Create subcloud-backup restore command
Adds support for restoring backups for a subcloud
or group of subcloud using the dcmanager API.

Test Plan:
1. Verify command with multiple combinations of
parameters.
2. Retest command after the changes are integrated
with others related to subcloud-backup commands.

Story: 2010116
Task: 46537

Signed-off-by: Andre Carneiro <Andre.DexheimerCarneiro@windriver.com>
Change-Id: I50ac2b529be9da45f68f21f46e9355546328ac40
2022-11-04 16:00:58 -03:00
..
2022-02-24 21:01:00 +00:00
2022-09-22 18:26:35 -03:00

api

DC Manager API is Web Server Gateway Interface (WSGI) application to receive and process API calls, including keystonemiddleware to do the authentication, parameter check and validation, convert API calls to job rpc message, and then send the job to DC Manager Manager through the queue. If the job will be processed by DC Manager Manager in synchronous way, the DC Manager API will wait for the response from the DC Manager Manager. Otherwise, the DC Manager API will send response to the API caller first, and then send the job to DC Manager Manager in asynchronous way.

Multiple DC Manager API could run in parallel, and also can work in multi-worker mode.

Multiple DC Manager API will be designed and run in stateless mode, persistent data will be accessed (read and write) from the DC Manager Database through the DAL module.

Setup and encapsulate the API WSGI app

app.py:

Setup and encapsulate the API WSGI app, including integrate the keystonemiddleware app

api_config.py:

API configuration loading and init

enforcer.py

Enforces policies on the version2 APIs