Kubernetes - ReplicaSets and Deployments
After applying this Deployment YAML, how many Pods will be running?
apiVersion: apps/v1
kind: Deployment
metadata:
name: webapp
spec:
replicas: 5
selector:
matchLabels:
tier: frontend
template:
metadata:
labels:
tier: frontend
spec:
containers:
- name: web
image: nginx