You have a ClusterIP Service. You have a NodePort Service. You even have a LoadBalancer Service. But the moment you need path-based routing, virtual hosts, or TLS termination for multiple apps behind a single IP, Services alone fall apart. That is where Ingress takes over.
33 posts tagged with "Kubernetes"
Container orchestration with Kubernetes
View All Tagskubectl Mastery — 40 Commands Every K8s Admin Needs
· 9 min read
You can write perfect YAML manifests, but if you cannot navigate a cluster quickly with kubectl, you will drown during an incident. This post is your combat reference — 40 commands organized by category, each with real examples you can run right now. Bookmark this one.
You deploy a PostgreSQL pod. It works great until the pod restarts and all your data vanishes. Containers are ephemeral by design — their filesystem dies with them. Kubernetes storage solves this by letting you attach durable disks that survive pod restarts, rescheduling, and even node failures. But the storage system has layers, and understanding them saves you from painful data loss.
