Files
cannaiq/k8s/ingress.yaml
Kelly 8b4292fbb2 Add local product detail page with Dutchie comparison
- Add ProductDetail page for viewing products locally
- Add Dutchie and Details buttons to product cards in Products and StoreDetail pages
- Add Last Updated display showing data freshness
- Add parallel scrape scripts and routes
- Add K8s deployment configurations
- Add frontend Dockerfile with nginx

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-30 06:34:38 -07:00

32 lines
724 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: scraper-ingress
namespace: dispensary-scraper
annotations:
kubernetes.io/ingress.class: nginx
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
tls:
- hosts:
- dispos.crawlsy.com
secretName: scraper-tls
rules:
- host: dispos.crawlsy.com
http:
paths:
- path: /api
pathType: Prefix
backend:
service:
name: scraper
port:
number: 80
- path: /
pathType: Prefix
backend:
service:
name: frontend
port:
number: 80