Files
argocd-example/frontend/deployment.yaml
2025-05-09 16:32:13 -04:00

20 lines
317 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: frontend
spec:
replicas: 1
selector:
matchLabels:
app: frontend
template:
metadata:
labels:
app: frontend
spec:
containers:
- name: frontend
image: nginx:alpine
ports:
- containerPort: 80