Pod vs Container vs Deployment
Pod:
A Pod is the smallest deployable unit in Kubernetes. It represents a single instance of a running process in a cluster.
Example Code:
apiVersion: v1
kind: Pod
metadata:
name: my-pod
spec:
containers:
- name: main-app
image: nginx:l...
poorva.hashnode.dev2 min read