Our KVM solution, clulstered and self hosted
Project description
ourkvm
Our KVM solution. Cluster, API and local tools all in one.
API
The API is a rest API enabled by running python -m ourkvm --api
The API is built using FastAPI.
The API requires authentication and uses OpenID connect and JWT for SSO.
This is done using fastapi_resource_server.
The API will support numerous day-to-day activities such as creating, managing and migrating machines between your cluster.
Cluster
The cluster is a feature being developer where the aim is to be able to share resources using KVM in a sensible way. Priority will be on static load balancing, but the goal is to have live balancing between cluster nodes.
Tools
The library ships with a Python module that can produce local resources such as Qemu disk images, Virtual Machine templates, configuration and .service
files.
Creating a local virtual machine
$ python -m ourkvm \
--machine-name testmachine \
--namespace testmachine \
--memory 4096 \
--harddrives ./testimg.qcow2:20G,./testlarge.qcow2:40G \
--cdroms ~/archiso/out/*.iso \
--service /etc/systemd/system/testmachine.service \
--config /etc/qemu.d/testmachine.cfg
The following will create a minimal virtual machine using NAT for networking, headless operation meant to be started with systemctl start testmachine.service
.
Stopping a machine
$ sudo systemctl stop testmachine.service
Using the above example service of testmachine.service
, the service will trigger python -m ourkvm --machine-name testmachine --stop
which will attach to the Qemu QMP socket at /tmp/testmachine.qmp
and execute a poweroff
(followed by qemu-quit
after a grace period if the machine has not yet powered off).
Adding custom networking
$ python -m ourkvm \
--machine-name testmachine \
--namespace testmachine \
--memory 4096 \
--harddrives ./testimg.qcow2:20G,./testlarge.qcow2:40G \
--cdroms ~/archiso/out/*.iso \
--service /etc/systemd/system/testmachine.service \
--config /etc/qemu.d/testmachine.cfg \
--network '[{"type": "tap", "name": "tap0", "bridge": "ns_br0", "namespace": "testmachine"}, {"type": "veth", "name": "vens0", "bridge": "test_bridge", "veth_pair": "vens0_ns"}, {"type": "veth", "name": "vens0_ns", "bridge": "ns_br0", "namespace": "testmachine", "veth_pair": "vens0"}]'
Adding to the previous example, this will add networking according to the following JSON layout:
[
{
"type": "tap",
"name": "tap0",
"bridge": "ns_br0",
"namespace": true
},
{
"type": "veth",
"name": "vens0",
"bridge": "test_bridge",
"veth_pair": "vens0_ns"
},
{
"type": "veth",
"name": "vens0_ns",
"bridge": "ns_br0",
"namespace": true,
"veth_pair": "vens0"
}
]
This creates several network components. Beginning from the top of the JSON file (but backwards logically):
- A
tap0
interface attached to the virtual machine - A bridge
ns_br0
connectingtap0
to it - Moving the above two interfaces into a namespace called
testmachine
- Creating a veth-pair of
vens0
<-->vens0_ns
- Creating a bridge called
test_bridge
- Adding
vens0
to thetest_bridge
- Moving
vens0_ns
into the namespacetestmachine
Creating a network chain that looks like the following:
[host] test_bridge <--> vens0--|--vens0_ns <--> ns_br0 <--> tap0 [vm]
.
The API will take care of creating the elaborate network infrastructure, but the CLI does the work for now.
Note: the namespace
declaration in the network struct is True
and will get automatically converted to the --namespace
definition. Specific namespace names can be supplied here instead of the VM should connect between multiple namespaces using bridges or veth interfaces.
Contributing
We use tabs over spaces. We follow pep8 to some extent using Flake8 (see .flake8
for exceptions). We follow strict typing using mypy with the --strict
parameter and we require every function to have a associated pytest function under /tests/
.
We welcome PR's on any addition/change. They might not all make it, but we develop straight against main
which is our master branch. Occational vX.y.z-dev
branch might appear to fix an older version while a major release is being on the way. PR's will not be merged until the three GitHub workflows (flake8, mypy and pytest) have completed successfully.
Help
Feel free to open a issue if you think it's a bug or you want to suggest an improvement.
Discussions
Open a discussion on a topic you believe is relevant to discuss or talk about surrounding ourkvm, if it doesn't fit the #help section.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file python-ourkvm-0.0.9.tar.gz
.
File metadata
- Download URL: python-ourkvm-0.0.9.tar.gz
- Upload date:
- Size: 20.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7336933a23b74346f725f1143b5539f2334b7541535f410864a44d6f18c4ac5f |
|
MD5 | 9457a71a88d7346b4df5d1d6ae370ac8 |
|
BLAKE2b-256 | ed8103920cebb83ea09ad23e581b6012a7a82cf97ce9dd1a7e82f321db0bdcc0 |
Provenance
File details
Details for the file python_ourkvm-0.0.9-py2.py3-none-any.whl
.
File metadata
- Download URL: python_ourkvm-0.0.9-py2.py3-none-any.whl
- Upload date:
- Size: 26.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50a29bc70048309c75af32cdf4221fcbe42bb53dbdf5e9ab98e224c150ba9521 |
|
MD5 | 2fd24a5a750aac910d5f61148afa8f1a |
|
BLAKE2b-256 | 18368f0cd541985bc1c7fad4de33f470e8e2e27763f942de28f86a6905fe9343 |