Files
LFS256-code/argocd/example-app/deployment.yaml
2025-04-13 19:41:03 +00:00

20 lines
457 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: argocd-example-app
spec:
replicas: 2 # You can adjust the number of replicas
selector:
matchLabels:
app: argocd-example-app
template:
metadata:
labels:
app: argocd-example-app
spec:
containers:
- name: argocd-example-app
image: liquidreply/argocd-example-app:2
ports:
- containerPort: 3000 # Assuming your app runs on port 3000