Sometimes you just need a quick pod of a given Linux flavour to test a quick scenario:
kubectl run debian-container -n default --rm -it --image=debian:stable -- bash
kubectl run circle-container -n default --rm -it --image=cimg/base:2026.01 -- bash
kubectl run go-container -n default --rm -it --image=cimg/go:1.25.5 -- bash
kubectl run ubuntu-container -n default --rm -it --image=ubuntu:26.04 -- bash
Also, the CLI to get just load balancers is annoying:
kubectl get svc --field-selector=spec.type=LoadBalancer