Understanding Cloud-Native Infrastructure

since I want to know what’s cloud-native and why it is the future, this is how I learn.

Roadmap

Container fundamentals

Linux fundamentals

1
2
3
4
5
6
namespace
cgroups
process isolation
virtual networking
iptables/ipvs
overlay filesystem

Docker/containerd

1
2
3
4
5
image layering
OCI runtime
container networking
bridge/veth
volume mounting

Kubernetes core architecture

Control Plane

  • kube-apiserver
    The center of everything.
  • etcd
    Distributed state storage.
  • scheduler
    How pods get assigned to nodes.
  • controller-manager
    Why Kubernetes is declarative.

Node side

  • kubelet
    Actual node agent.
  • container runtime
    Usually containerd.
  • kube-proxy
    Networking + Service implementation.

Networking

  • service
    how service discovery works.
  • coreDNS
    how dns resolution works.
  • kube-proxy
    iptables vs ipvs.
  • CNI ()
  • Ingress / Gateway API
    North-sourth traffic.
  • Service Mesh basics

Storage

  • PersistenVolume
  • CSI drivers
  • StatefulSet
  • Distributed storage concepts

Observability

  • Metrics
    Prometheus
  • Logging
    Loki / ELK
  • Tracing
    OpenTelemetry

GitOps

Argo CD

Service Mesh

Envoy

Istio

  • sidecar injection
  • xDS
  • traffic management
  • mTLS
  • retries
  • canary routing

Platform engineering

1
2
3
4
5
internal Developer Platform  
automation
templates
operators
self-service

after all previous stages, the biggest mindset change you get is
Traditional Java backend mindset: Application-centric
Cloud-native mindset: Platform-centric
Meaning:

  • applications are disposable
  • infrastructure becomes programmable
  • reconciliation replaces imperative operations
  • networking becomes software-defined

This shift is much bigger than simply “learning Kubernetes”.
Kubernetes is a distributed control system, NOT a container deployment tool.

Future Architecture (2026+)

Most cloud-native platforms are moving toward:

1
2
3
4
5
6
7
       Gateway API
|
----------------
| |
Istio Cilium
|
Envoy

The API becomes standardized.

The implementation becomes replaceable.

This is exactly what Kubernetes did with:

Container Runtime Interface (CRI)

allowing:

Docker
containerd
CRI-O

to be swapped underneath.

Gateway API is doing the same thing for networking.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Learn Kubernetes Services thoroughly
ClusterIP
NodePort
LoadBalancer
Learn Ingress
NGINX Ingress Controller
Learn Gateway API
Gateway
HTTPRoute
GRPCRoute
ReferenceGrant
Learn Envoy
listeners
routes
clusters
xDS
Learn Istio
sidecar mode
ambient mode
traffic management
mTLS
Learn Cilium
eBPF
Gateway API support
Service Mesh