podset-operator
podset-operator copied to clipboard
An example of Kubernetes Operator using the Operator SDK
You have ``` appv1alpha1 "github.com/xcoulon/podset-operator/pkg/apis/app/v1alpha1" ``` in your `podset_controller.go` - I was trying to build following the Medium article but I cannot find how to adapt this import for my...
Read your blog : https://medium.com/faun/writing-your-first-kubernetes-operator-8f3df4453234 Excellent starter doc on operator-sdk. Thanks a lot for that. I did exactly the same thing which you did mention in the blog. I am...
https://github.com/xcoulon/podset-operator/blob/b30288a4fa7afcd4aa7e971558185a1840ea2a52/pkg/controller/podset/podset_controller.go#L58 Just out of curiosity, wouldn't watching for all pod events (pending, running, terminating, etc.) cause a race condition in the reconciliation loop where pods might keep getting created (even...