summaryrefslogtreecommitdiff
path: root/opendc
AgeCommit message (Collapse)Author
2020-02-14bug: Apply requested cpu time correctlyFabian Mastenbroek
This change fixes an issue where the runtime of an image that requested cpu time was not properly computed.
2020-02-14style: Fix Ktlint issuesFabian Mastenbroek
2020-02-14refactor: Move experiments from TPDS module to SC18 moduleFabian Mastenbroek
These experiments were originally designed for the SC18 paper.
2020-02-14refactor: Rename FakeBareMetalDriver to SimpleBareMetalDriverFabian Mastenbroek
2020-02-14refactor: Rename Flavor to ServerFlavorFabian Mastenbroek
This change renames Flavor to ServerFlavor to be more indicative of its function. The Flavor name follows the naming of the OpenStack project.
2020-02-14refactor: Integrate opendc-compute in existing modelFabian Mastenbroek
This change refactors the existing model to use the new interfaces from the opendc-compute module.
2020-02-14feat: Implement basic provisioner serviceFabian Mastenbroek
2020-02-14refactor: Remodel workloads and compute resourceFabian Mastenbroek
This change remodels our model for workloads and compute resources in order to support VM/container functionality where multiple workloads run on a single machine. In particular, we make the following changes: - Move the compute-related source code into the `opendc-compute` module. - Change from application-based model to image-based model, where the image has exclusive access over the machine, instead of applications that share the machine. We may model in the future again applications/operating system, but at the moment, we do not need this granularity, given that the workload traces can be simulated using VMs.
2020-02-11Update Zone.ktGeorgios Andreadis
Add missing dots
2020-02-11Update Environment.ktGeorgios Andreadis
Add missing dot
2020-02-11refactor: Reimplement OpenDC model using 2.x APIFabian Mastenbroek