Files
argo-temp/apps/reef/deployment.yaml
T

27 lines
604 B
YAML
Raw Normal View History

2025-08-27 19:32:09 -04:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: reef
2025-08-27 21:00:19 -04:00
namespace: argocd
2025-08-27 19:32:09 -04:00
spec:
replicas: 1
selector: { matchLabels: { app: reef } }
template:
metadata:
labels: { app: reef }
spec:
containers:
- name: app
image: blahaj-bun:dev
imagePullPolicy: IfNotPresent
ports: [{ name: http, containerPort: 8080 }]
---
apiVersion: v1
kind: Service
metadata:
name: reef
2025-08-27 21:00:19 -04:00
namespace: argocd
2025-08-27 19:32:09 -04:00
spec:
selector: { app: reef }
ports: [{ name: http, port: 80, targetPort: 8080 }]