Q1. What is a Kubernetes Pod?
A Pod is the smallest deployable unit in Kubernetes. It represents one or more containers that run together on the same node and share a network namespace, IP address, an...
Technical Question Bank · Peer-Reviewed
Search and filter frequently asked interview questions across technical, programming, and behavioral domains. Tailor your interview preparation by difficulty for freshers or experienced developers (13 available).
A Pod is the smallest deployable unit in Kubernetes. It represents one or more containers that run together on the same node and share a network namespace, IP address, an...
Both manage Pods, but they make different guarantees. Deployment: - Manages stateless, interchangeable replicas identified by a random suffix. - Supports rolling updates ...
Kubernetes gives stable access to moving Pods through Services and DNS. - A Service selects Pods by label and gets a stable virtual IP, the ClusterIP, and a DNS name. - k...
In a dynamic environment, service instances start, stop and move, so callers cannot rely on fixed hostnames. Service discovery maintains a registry of healthy instances a...
A Service exposes a set of Pods at the transport layer; an Ingress exposes HTTP and HTTPS routes into the cluster at the application layer. - Service: stable virtual IP a...
Probes let Kubernetes decide a container's health and readiness. - readinessProbe: whether the Pod should receive traffic. Failing it removes the Pod from Service endpoin...
Defence in depth: - Identity: least-privilege IAM roles, workload identity, no long-lived static keys, and RBAC scoped per namespace. - Network: private subnets, security...
The Horizontal Pod Autoscaler, or HPA, scales the number of Pod replicas based on observed metrics. - The metrics-server, or a custom or external adapter, supplies metric...
CrashLoopBackOff means the container starts, exits, and Kubernetes restarts it with exponential backoff. 1. Get the state and previous logs. ```bash kubectl get pod web-1...
Plan for node, zone, and control-plane failures. - Regional cluster: the control plane is replicated across three zones and nodes spread across zones, so a single zone ou...
HireXTech uses essential storage to remember your study preferences and third-party advertising cookies via Google AdSense in compliance with GDPR. You can choose to enable essential cookies only or accept all cookies. Read our Privacy Policy.