- Move Redis connection settings to runtime.exs only - Remove localhost:6379 hardcoded values that were overriding runtime config - Keep only non-environment-dependent Exq settings in compile-time config - Fixes Exq trying to connect to localhost instead of Kubernetes Redis service 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
No EOL
421 B
YAML
19 lines
No EOL
421 B
YAML
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: aprs
|
|
namespace: aprs
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: aprs
|
|
startupProbe:
|
|
httpGet:
|
|
path: /health
|
|
port: 4000
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 5
|
|
timeoutSeconds: 3
|
|
successThreshold: 1
|
|
failureThreshold: 12 # Gives 60 seconds total to start up |