A collection of tools for simulating Kubernetes scheduling and autoscaling behaviour
This package provides the following components:
sk-cloudprov
: an external gRPC-based cloud provider for Cluster Autoscaler that can communicate with and scale thesk-vnode
"node group".skctl
: a CLI utility for interacting with various other SimKube componentssk-ctrl
: a Kubernetes Controller that watches for Simulation custom resources and runs a simulation based on the provided trace file.sk-driver
: the actual runner for a specific simulation, created as a Kubernetes Job bysk-ctrl
sk-tracer
: a watcher for Kubernetes pod creation and deletion events, saves these events in a replayable trace format.sk-vnode
: a Virtual Kubelet-based "hollow node" that allows customization based off a "skeleton" node file (see the example insimkube/k8s/sk_vnode.py
).
- Go >= 1.20
- Rust >= 1.71 (needed if you want to build outside of Docker)
- Docker
- kubectl >= 1.27
- Kubernetes >= 1.27
- CertManager for setting up mutating webhook certificates
SimKube uses 🔥Config to generate Kubernetes manifests from definitions located
in ./k8s/
. If you want to use this mechanism for generating Kubernetes manifests, you will need to install the
following additional dependencies:
- Python 3.10
- Python Poetry (https://python-poetry.org/docs/)
Additionally, if you want to run SimKube on a local development cluster, kind >= 0.19 is the supported tooling for doing so.
To build all SimKube artifacts for the first time run:
git submodule init && git submodule update
make build
andmake skctl
from the root of this repository.
For all subsequent builds of SimKube artifacts, run only make build
and make skctl
from the root of this repository.
To build and push Docker images for all the artifacts, run DOCKER_REGISTRY=path_to_your_registry:5000 make image
You will need a KUBECONFIG file with cluster admin permissions; make run
will use 🔥Config to generate the Kubernetes
manifests and deploy all SimKube artifacts to the specified cluster.
All build artifacts are placed in the .build/
directory. You can remove this directory or run make clean
to clean
up.
You can find additional documentation on the individual components in the docs directory of this repo. Links to relevant documentation are below:
We welcome any and all contributions to the SimKube project! Please open a pull request. We're still figuring out issue tracking, so for the time being if you found a bug or have a feature request, please start a discussion. This may change in the future.
Applied Computing Research Labs has a strict code of conduct we expect all contributors to adhere to. Please read the full text so that you understand the expectations upon you as a contributor.
SimKube is licensed under the MIT License. Contributors to this project agree that they own the copyrights to all contributed material, and agree to license your contributions under the same terms. This is "inbound=outbound", and is the GitHub default.
Please see the Contributor's Guide for more information on setting up and building SimKube.