Files
cannaiq/k8s/findadispo-frontend.yaml
Kelly a8360c7260 feat: Migrate to spdy.io infrastructure
- Namespace: dispensary-scraper → cannaiq
- Registry: code.cannabrands.app → git.spdy.io
- Database: External PostgreSQL at 10.100.6.50
- MinIO: Internal at 10.100.9.80:9000
- CI: ci.spdy.io

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-15 06:40:48 -07:00

42 lines
836 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: findadispo-frontend
namespace: cannaiq
spec:
replicas: 1
selector:
matchLabels:
app: findadispo-frontend
template:
metadata:
labels:
app: findadispo-frontend
spec:
imagePullSecrets:
- name: regcred
containers:
- name: findadispo-frontend
image: git.spdy.io/creationshop/findadispo-frontend:v1.0.0
ports:
- containerPort: 80
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "100m"
---
apiVersion: v1
kind: Service
metadata:
name: findadispo-frontend
namespace: cannaiq
spec:
selector:
app: findadispo-frontend
ports:
- port: 80
targetPort: 80