From dfbca195cbe1d6c4eebe7ccd4cc707c84ac43e79 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Fri, 5 Mar 2021 16:48:59 +0100 Subject: compute: Extract API from compute service This change extracts the API for the OpenDC Compute service into a separate module to establish a clearer boundary between the interface meant for consumers and interfaces meant for the the serve implementation. --- simulator/settings.gradle.kts | 1 + 1 file changed, 1 insertion(+) (limited to 'simulator/settings.gradle.kts') diff --git a/simulator/settings.gradle.kts b/simulator/settings.gradle.kts index 77d78318..6e6a9d29 100644 --- a/simulator/settings.gradle.kts +++ b/simulator/settings.gradle.kts @@ -23,6 +23,7 @@ rootProject.name = "opendc-simulator" include(":opendc-platform") include(":opendc-core") +include(":opendc-compute:opendc-compute-api") include(":opendc-compute:opendc-compute-core") include(":opendc-compute:opendc-compute-simulator") include(":opendc-workflows") -- cgit v1.2.3 From 9bb91897404bbeac1d5f7a7f890abd3a9d5d9084 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Sun, 7 Mar 2021 15:44:36 +0100 Subject: compute: Move ComputeService implementation in service module This change introduces the ComputeService interface (previously VirtProvisioningService) and provides a central implementation in opendc-compute-service. Previously, the implementation of this interface was bound to the simulator package, which meant that independent business logic could not be re-used without importing the simulator code. --- simulator/settings.gradle.kts | 1 + 1 file changed, 1 insertion(+) (limited to 'simulator/settings.gradle.kts') diff --git a/simulator/settings.gradle.kts b/simulator/settings.gradle.kts index 6e6a9d29..d2bc92a0 100644 --- a/simulator/settings.gradle.kts +++ b/simulator/settings.gradle.kts @@ -24,6 +24,7 @@ rootProject.name = "opendc-simulator" include(":opendc-platform") include(":opendc-core") include(":opendc-compute:opendc-compute-api") +include(":opendc-compute:opendc-compute-service") include(":opendc-compute:opendc-compute-core") include(":opendc-compute:opendc-compute-simulator") include(":opendc-workflows") -- cgit v1.2.3 From 75751865179c6cd5a05abb4a0641193595f59b45 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Sun, 7 Mar 2021 15:58:06 +0100 Subject: compute: Move bare-metal provisioning in separate module This change moves the bare-metal provisioning packages outside the compute module since these modules represent different layers in the ecosystem and should not be mixed. --- simulator/settings.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'simulator/settings.gradle.kts') diff --git a/simulator/settings.gradle.kts b/simulator/settings.gradle.kts index d2bc92a0..7a82adcd 100644 --- a/simulator/settings.gradle.kts +++ b/simulator/settings.gradle.kts @@ -25,8 +25,8 @@ include(":opendc-platform") include(":opendc-core") include(":opendc-compute:opendc-compute-api") include(":opendc-compute:opendc-compute-service") -include(":opendc-compute:opendc-compute-core") include(":opendc-compute:opendc-compute-simulator") +include(":opendc-metal") include(":opendc-workflows") include(":opendc-format") include(":opendc-experiments:opendc-experiments-sc18") -- cgit v1.2.3