How to write kubernetes custom controller to operate VM resource in cloud?

453 Views Asked by At

I am new to the writing a custom controllers for the kubernetes and trying to understand this. I have started referring the sample-controller https://github.com/kubernetes/sample-controller.

I want to extend the sample-controller to operate VM resource in cloud using kubernetes. It could create a Vm if new VM kind resource is detected. Update the sub resources or delete if user want.

Schema should be like the below:

apiVersion: samplecontroller.k8s.io/v1alpha1
kind: VM
metadata:
name: sample
spec:
vmname: test-1
status:
vmId: 1234-567-8910
cpuUtilization: 50 

Any suggestions or help is highly appreciable :)

2

There are 2 best solutions below

2
On

You can use Operator SDK as well https://github.com/operator-framework/operator-sdk but I think kubebuilder.io is a way better!

However, if you're looking for a controller that supports multi-cloud, already there's one by Kubermatic. https://github.com/kubermatic/machine-controller

it works! you can have a look.

0
On

Start from https://book.kubebuilder.io/ instead. It's a much better jumping off point than sample-controller.