pr feedback

This commit is contained in:
Frostebite
2025-12-06 01:04:14 +00:00
parent 459b9298b2
commit dedb8810ff
4 changed files with 21 additions and 12 deletions

2
dist/index.js generated vendored
View File

@@ -3840,6 +3840,8 @@ class KubernetesJobSpecFactory {
if (typeof value === 'string' &&
endpointEnvNames.has(x.name) &&
(value.startsWith('http://localhost') || value.startsWith('http://127.0.0.1'))) {
// Replace localhost with host.k3d.internal so pods can access host services
// This simulates accessing external services (like real AWS S3)
value = value
.replace('http://localhost', 'http://host.k3d.internal')
.replace('http://127.0.0.1', 'http://host.k3d.internal');

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long