Kubernetes Deployment
K8s Pods
Suppose you have a Kubernetes cluster set up on your machine , lets assume of nginx. You create a Pod using YAML and it looks like this :
apiVersion: v1
kind: Pod
metadata:
name: nginx
spec:
containers:
- name: nginx
image: nginx:1...
atharvasblog.hashnode.dev3 min read