[helm] correct the internal listening address configuration for coordinator-server #2290
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Purpose
The purpose of this change is to fix a connectivity issue between clients and the coordinator-server when Fluss is deployed via Helm. Previously, the
INTERNALlistener was bound to0.0.0.0, which caused the server to register itself with an ambiguous address. This prevented clients from correctly resolving the coordinator-server location during theCREATE CATALOGprocess viabootstrap.servers.Brief change log
helm/templates/sts-coordinator.yamlto change theINTERNALlistener bind address from0.0.0.0to${POD_IP}.coordinator-server-hs.fluss:9123) to succeed:CREATE CATALOG fluss_catalog WITH ( 'type' = 'fluss', 'bootstrap.servers' = 'coordinator-server-hs.fluss:9123' );Tests
CREATE CATALOGcommands now succeed without errors.$FLUSS_HOME/conf/server.yamlinside the coordinator pod to ensure thebind.listenersproperty is correctly rendered with the Pod's IP.API and Format
Documentation