z2/deployment.yaml
2025-04-15 20:11:51 +00:00

22 lines
374 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: web-app-deployment
namespace: my-namespace
spec:
replicas: 3
selector:
matchLabels:
app: web-app
template:
metadata:
labels:
app: web-app
spec:
containers:
- name: web-app-container
image: elineen/todo-app:latest
ports:
- containerPort: 8080