fix: repoint worker EXTERNAL_BASE_URL at stable jupiter DNS name

Workers hardcoded jupiter's ClusterIP (10.43.224.63 / 10.43.229.168),
which had gone stale and pointed at nothing. Every request forwarded
from worker-orders, worker-deliveries, worker-customers,
worker-rider-logs, worker-products, and worker-notifications to
jupiter was timing out silently, breaking order creation, delivery
logs, and rider online status. Repointed at the stable in-cluster DNS
name (jupiter.nearle) instead of a ClusterIP so this can't go stale
again after a future service recreation.

Also bumps jupiter to v2.7.57 (Redis client timeout/pool fix) to
match what's already deployed live.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Suriya
2026-07-21 09:36:33 +05:30
parent cde7d4b84b
commit bab21c2403
3 changed files with 7 additions and 7 deletions

View File

@@ -105,7 +105,7 @@ spec:
key: api_key
optional: true
- name: EXTERNAL_BASE_URL
value: "http://10.43.224.63"
value: "http://jupiter.nearle"
resources:
requests:
memory: "128Mi"

View File

@@ -97,7 +97,7 @@ spec:
key: api_key
optional: true
- name: EXTERNAL_BASE_URL
value: "http://10.43.229.168"
value: "http://jupiter.nearle"
resources:
requests:
memory: "128Mi"
@@ -207,7 +207,7 @@ spec:
name: nats-credentials
key: password
- name: EXTERNAL_BASE_URL
value: "http://10.43.224.63"
value: "http://jupiter.nearle"
resources:
requests:
memory: "128Mi"
@@ -323,7 +323,7 @@ spec:
key: api_key
optional: true
- name: EXTERNAL_BASE_URL
value: "http://10.43.229.168"
value: "http://jupiter.nearle"
resources:
requests:
memory: "128Mi"
@@ -439,7 +439,7 @@ spec:
key: api_key
optional: true
- name: EXTERNAL_BASE_URL
value: "http://10.43.224.63"
value: "http://jupiter.nearle"
resources:
requests:
memory: "128Mi"
@@ -555,7 +555,7 @@ spec:
key: api_key
optional: true
- name: EXTERNAL_BASE_URL
value: "http://10.43.229.168"
value: "http://jupiter.nearle"
resources:
requests:
memory: "128Mi"

View File

@@ -47,7 +47,7 @@ spec:
app: jupiter
containers:
- name: jupiter
image: nearlecommerce/jupiter:v2.7.55
image: nearlecommerce/jupiter:v2.7.57
imagePullPolicy: Always
securityContext:
allowPrivilegeEscalation: false