AWS - EKS
You have the following partial Deployment YAML for an EKS application:
What will happen if you apply this manifest to your EKS cluster?
apiVersion: apps/v1
kind: Deployment
metadata:
name: frontend
spec:
replicas: 4
selector:
matchLabels:
app: frontend
template:
metadata:
labels:
app: frontend
spec:
containers:
- name: frontend-container
image: nginx:1.19What will happen if you apply this manifest to your EKS cluster?
