I'm looking to deepen my understanding of Kubernetes and Go, and I'm curious about practical use cases for creating my own operator. So far, the only idea I have is an operator that analyzes cluster event logs and generates security improvement reports using an AI API. I'm hoping to discover more concrete and useful applications for this!
1 Answer
I'm currently working on a pretty straightforward operator that spins up a pod with an SSH sidecar. The idea is to find an available port on the chosen node and assign it for direct SSH access. It will output the public IP and the port for that. I'm also planning to implement a replicated deployment in the future, but for now, this is my starting project, and I'm still getting the hang of Go!
Any chance you could share your GitHub repo for this?