apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
spec:
selector:
matchLabels:
app: nginx
replicas: 4 # Update the replicas from 2 to 4
template:
labels:
containers:
- name: nginx
image: nginx:1.16.1
ports:
- containerPort: 80