- Add k8s/redis.yaml with Redis 7 Alpine deployment - Add REDIS_HOST and REDIS_PORT to configmap - Redis configured with 200MB max memory and LRU eviction - 1GB persistent volume for data persistence 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
205 B
YAML
12 lines
205 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: scraper-config
|
|
namespace: dispensary-scraper
|
|
data:
|
|
NODE_ENV: "production"
|
|
PORT: "3010"
|
|
LOG_LEVEL: "info"
|
|
REDIS_HOST: "redis"
|
|
REDIS_PORT: "6379"
|