- 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>
143 lines
3.4 KiB
YAML
143 lines
3.4 KiB
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: scraper-ingress
|
|
namespace: cannaiq
|
|
annotations:
|
|
kubernetes.io/ingress.class: nginx
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
spec:
|
|
tls:
|
|
- hosts:
|
|
- findagram.co
|
|
- www.findagram.co
|
|
secretName: findagram-tls
|
|
- hosts:
|
|
- findadispo.com
|
|
- www.findadispo.com
|
|
secretName: findadispo-tls
|
|
- hosts:
|
|
- cannaiq.co
|
|
- www.cannaiq.co
|
|
secretName: cannaiq-tls
|
|
rules:
|
|
# Find a Gram consumer site
|
|
- host: findagram.co
|
|
http:
|
|
paths:
|
|
- path: /api
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: scraper
|
|
port:
|
|
number: 80
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: findagram-frontend
|
|
port:
|
|
number: 80
|
|
- host: www.findagram.co
|
|
http:
|
|
paths:
|
|
- path: /api
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: scraper
|
|
port:
|
|
number: 80
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: findagram-frontend
|
|
port:
|
|
number: 80
|
|
# Find a Dispo consumer site
|
|
- host: findadispo.com
|
|
http:
|
|
paths:
|
|
- path: /api
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: scraper
|
|
port:
|
|
number: 80
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: findadispo-frontend
|
|
port:
|
|
number: 80
|
|
- host: www.findadispo.com
|
|
http:
|
|
paths:
|
|
- path: /api
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: scraper
|
|
port:
|
|
number: 80
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: findadispo-frontend
|
|
port:
|
|
number: 80
|
|
# CannaIQ dashboard site
|
|
- host: cannaiq.co
|
|
http:
|
|
paths:
|
|
- path: /api
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: scraper
|
|
port:
|
|
number: 80
|
|
- path: /downloads
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: scraper
|
|
port:
|
|
number: 80
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: cannaiq-frontend
|
|
port:
|
|
number: 80
|
|
- host: www.cannaiq.co
|
|
http:
|
|
paths:
|
|
- path: /api
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: scraper
|
|
port:
|
|
number: 80
|
|
- path: /downloads
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: scraper
|
|
port:
|
|
number: 80
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: cannaiq-frontend
|
|
port:
|
|
number: 80
|