- 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>
12 lines
No EOL
357 B
YAML
12 lines
No EOL
357 B
YAML
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: aprs
|
|
namespace: aprs
|
|
spec:
|
|
updateStrategy:
|
|
type: RollingUpdate
|
|
rollingUpdate:
|
|
partition: 0
|
|
maxUnavailable: 0 # This ensures pods are only terminated after new ones are ready
|
|
minReadySeconds: 30 # Wait 30 seconds after a pod is ready before considering the update successful |