agentic-os/k8s/newspaper-extractor/frontend.yaml

35 lines
665 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: newspaper-frontend
namespace: ai-agents
spec:
replicas: 1
selector:
matchLabels:
app: newspaper-frontend
template:
metadata:
labels:
app: newspaper-frontend
spec:
containers:
- name: frontend
image: 192.168.8.250:5000/agentic-os/newspaper-extractor-frontend:latest
imagePullPolicy: Always
ports:
- containerPort: 3000
---
apiVersion: v1
kind: Service
metadata:
name: newspaper-frontend
namespace: ai-agents
spec:
selector:
app: newspaper-frontend
ports:
- protocol: TCP
port: 3000
targetPort: 3000