- 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>
42 lines
815 B
YAML
42 lines
815 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: cannaiq-frontend
|
|
namespace: cannaiq
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: cannaiq-frontend
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: cannaiq-frontend
|
|
spec:
|
|
imagePullSecrets:
|
|
- name: regcred
|
|
containers:
|
|
- name: cannaiq-frontend
|
|
image: git.spdy.io/creationshop/cannaiq-frontend:latest
|
|
ports:
|
|
- containerPort: 80
|
|
resources:
|
|
requests:
|
|
memory: "64Mi"
|
|
cpu: "50m"
|
|
limits:
|
|
memory: "128Mi"
|
|
cpu: "100m"
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: cannaiq-frontend
|
|
namespace: cannaiq
|
|
spec:
|
|
selector:
|
|
app: cannaiq-frontend
|
|
ports:
|
|
- port: 80
|
|
targetPort: 80
|