βΆWhat is eBPF and how is Cilium using it?
eBPF = programs running in Linux kernel (safe sandbox). Cilium uses eBPF to process network packets at kernel level (faster than userspace). Examples: (1) network policy enforcement (drop packets without recompiling kernel), (2) load balancing, (3) observability (packet tracing). Traditional approach = iptables (slow, inflexible). Cilium = modern, programmable, 10x faster.
βΆWhy use Cilium instead of Calico or Flannel?
Calico = iptables-based, works everywhere, slower. Flannel = simple overlay, less security. Cilium = eBPF, fastest, best security policies. Trade-off: Cilium requires Linux 4.8+ (most clouds have this). If stuck on old Linux, use Calico.
βΆIs Cilium production-ready (2026)?
Yes. Used by: Isovalent (company backing Cilium), Google Cloud, AWS, thousands of clusters. Stable since 2021. Not bleeding-edge anymore; mature. Some teams still prefer Calico (comfort, fewer surprises), but Cilium is production-solid.
βΆHow hard is Cilium eBPF programming?
Very hard if you write eBPF. Moderate hard if you just deploy Cilium (use pre-built policies). Most operators don't write eBPF; they configure Cilium (YAML). If you want to contribute/customize, eBPF is 6-12 months learning curve (C + kernel concepts).
βΆWhat can I do with Cilium that I can't do with Calico?
Security policies at network level (layer 4-7 inspection, allow/deny based on DNS, HTTP host, path). Cilium can inspect encrypted traffic metadata. Load balancing without kube-proxy. Observability (packet loss, latency per pod-pair). Calico = layer 3 firewall; Cilium = full-stack network program.
βΆHow do I debug Cilium network issues?
Tools: (1) cilium connectivity test (sanity check), (2) cilium monitor (live packet trace), (3) bpftool (inspect eBPF programs), (4) Hubble (observability UI). Common issues: IP overlap, pod CNI misconfiguration, eBPF map overflow. Debugging is deeper than Calico (kernel-level knowledge required).
βΆWhat salary for Cilium expertise?
Platform engineer ($120-160k) + Cilium mastery = $160-220k. SRE ($130-170k) + Cilium = $170-240k. Rare skill: maybe 500 Cilium experts globally in 2026. High demand: Google Cloud, AWS, startups building cloud platforms. If you own this, you're unfireable.