Running binary in Kubernets

You cannot run a raw binary directly on Kubernetes. These steps must be followed:
1. Package your binary into a container image (using Dockerfile)
2. Create kubernets config files:
2a. Define deployment: You create a Kubernetes configuration file specifying how many Pod copies (replicas) you want
2b. Route traffic: Create a Kubernetes Service. This acts as an internal load balancer that automatically routes incoming traffic across all running Pods.