You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GRID_SWIM_ADVERTISE_ADDR and GRID_SWIM_SEEDS use SocketAddr::from_str(), which only accepts ip:port. AWS NLBs return DNS hostnames. This forces operators to resolve hostnames to IPs before deploying, and to use Elastic IPs for stability.
Proposal:
Accept hostnames in SWIM env vars by performing DNS resolution at startup, with a fallback to SocketAddr parsing. Alternatively, support CRD-only seed configuration where GridNetwork.spec.seeds handles DNS resolution during reconciliation.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Problem:
GRID_SWIM_ADVERTISE_ADDRandGRID_SWIM_SEEDSuseSocketAddr::from_str(), which only acceptsip:port. AWS NLBs return DNS hostnames. This forces operators to resolve hostnames to IPs before deploying, and to use Elastic IPs for stability.Proposal:
Accept hostnames in SWIM env vars by performing DNS resolution at startup, with a fallback to
SocketAddrparsing. Alternatively, support CRD-only seed configuration whereGridNetwork.spec.seedshandles DNS resolution during reconciliation.All reactions