Help with Learning Operator Development Without Kube-builder

0
5
Asked By CuriousDev2023 On

I'm new to building operators and feeling a bit lost. I've been searching for tutorials, but most of them reference Kube-builder and the Operator Framework, which my company doesn't use. We work exclusively with client-go, api, machinery, code-generator, and controller-gen. There's so much to learn, and it's overwhelming! Can anyone recommend some resources or guidance on how to get started? Thanks a lot!

5 Answers

Answered By DevNewbie01 On

Consider checking out operator-sdk. It's what we use on my team to develop a bunch of operators, and it could be useful for you!

Answered By CodeExplorer85 On

Check out tutorials by Gianluca Mardente, the guy behind Sveltos. He has a great collection of tutorials that can help you out. You can find them at his GitHub page!

CuriousDev2023 -

Excellent tutorial. Thanks for sharing!

Answered By TechWhiz92 On

You might want to start by creating a simple operator using Kube-builder that just prints a message when a pod changes. It’s a good way to dip your toes in, but make sure you have some solid Go skills beforehand!

Answered By OperatorFan99 On

I really wouldn’t suggest using anything other than Kube-builder for learning operator development—unless you're aiming to understand the internals of a controller. Even then, it’s tough to figure out!

Answered By GoGuru77 On

Your level of Go knowledge will really impact your learning. A great place to start is with the Kubernetes deployment controller. You can find it on GitHub. It contains a lot of best practices and caching techniques that are quite valuable.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.