efe kaya
  • blog
  • tweets
  • github
  • contact
10 November 2024

Interviewing at Google

A blog post about my experience interviewing at Google.

5 September 2024

PodConfigMapController

Kubernetes controller that dynamically generates and manages ConfigMaps based on the metadata of running Pods. Its behavior is configured through a CRD called PodConfigMapConfig, allowing users to specify which Pods to target and what information to include in the generated ConfigMaps.

27 February 2024

A simple load balancer

A simple TCP server that listens on a specific address (`localhost:8080`) and distributes incoming connections among a set of backend servers (`localhost:5001`, `localhost:5002`, `localhost:5003`). It includes basic setup for network communication, error handling, and connection acceptance.