AWS - EKS
Given this YAML snippet for a Deployment on EKS:
What will be the number of running pods after applying this deployment?
apiVersion: apps/v1
kind: Deployment
metadata:
name: myapp
spec:
replicas: 3
selector:
matchLabels:
app: myapp
template:
metadata:
labels:
app: myapp
spec:
containers:
- name: myapp-container
image: nginx:latest
What will be the number of running pods after applying this deployment?
