
* WIP - Initial API implementation with Falcon * API service for /designs and /tasks endpoints REST API using falcon library Middleware for authentication (stubbed until Keystone is avail) Middleware for context and logging Request logging and initial error logging README updates * Cleanup readme formatting * Rename helm_drydock to drydock_provisioner * Fixed missing except statement * Fixed missing except statement * Reorganize API paths in a list Fix duplication of context init Add API version prefix to URLs * DRYD-2 MVP - phase 1 - node enlistment Add node driver task for IdentifyNode Implement MaaS API interface for Machines and Interfaces
47 lines
1.3 KiB
Markdown
47 lines
1.3 KiB
Markdown
# Statemgmt #
|
|
|
|
Statemgmt is the interface to the persistence store
|
|
for holding site design data as well as build status data
|
|
|
|
/drydock - Base namespace for drydock data
|
|
|
|
## As Designed ##
|
|
|
|
Serialization of Drydock internal model as ingested. Not externally writable.
|
|
|
|
/drydock/design
|
|
/drydock/design/base - The base site design used for the first deployment
|
|
/drydock/design/[changeID] - A change layer on top of the base site design. Chrono ordered
|
|
|
|
## As Built ##
|
|
|
|
Serialization of Drydock internal model as rendered to effective implementation including build status. Not externally writable.
|
|
|
|
/drydock/build
|
|
/drydock/build/[datestamp] - A point-in-time view of what was deployed with deployment results
|
|
|
|
## Tasks ##
|
|
|
|
Management of task state for the internal orchestrator
|
|
|
|
/drydock/tasks
|
|
|
|
## Node data ##
|
|
|
|
Per-node data that can drive introspection as well as accept updates from nodes
|
|
|
|
/drydock/nodedata
|
|
/drydock/nodedata/[nodename] - Per-node data, can be seeded with Ingested metadata but can be updated during by orchestrator or node
|
|
|
|
## Service data ##
|
|
|
|
Per-service data (may not be needed)
|
|
|
|
/drydock/servicedata
|
|
/drydock/servicedata/[servicename]
|
|
|
|
## Global data ##
|
|
|
|
Generic k:v store that can be produced/consumed by non-Drydock services via the Drydock API
|
|
|
|
/drydock/globaldata |