Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Below is a breakdown of the three major categories these requirements fall under
The REST API is defined via the Open API Specification.

- Follow the link below to see the specification:
- [OpenAPI Specification](https://github.com/margo/specification/blob/pre-draft/system-design/specification/margo-management-interface/workload-management-api-1.0.0.yaml)
- [OpenAPI Specification](https://github.com/margo/specification/blob/pre-draft/system-design/specification/margo-management-interface/workload-management-api-1.0.0-rc.2.yaml)
- [Swagger UI](../margo-management-interface/management-interface-swagger.md)
#### General Rest API information
Server-side TLS REST API MUST be utilized operating over HTTP1.1.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<script>
window.onload = function() {
SwaggerUIBundle({
url: "/specification/margo-management-interface/workload-management-api-1.0.0.yaml", // path to api definition
url: "/specification/margo-management-interface/workload-management-api-1.0.0-rc.2.yaml", // path to api definition
dom_id: '#swagger-ui'
});
};
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.1.0
info:
title: Margo Workload Management API
version: 1.0.0
version: 1.0.0-rc.2
Comment thread
matlec marked this conversation as resolved.
description:
API for managing workloads on Margo-compliant edge devices.
Includes the APIs for exchanging desired state and current state.
Expand All @@ -10,7 +10,7 @@ info:

servers:
- url: https://wfm.margo.org/
description: Workload Fleet Manager API
description: Workload Fleet Manager APIs

security:
- PayloadSignature: []
Expand Down
Loading