Skip to content

Commit ef046fb

Browse files
pchaignoHadrienPatte
authored andcommitted
cilium-cli: Fix port conflict for echo-external-node
Commit 018cb7d ("cilium-cli: Move ExternalDeploymentPort away from node-local-dns health") moved the echo-external-node deployment from TCP/8080 to TCP/8090 to avoid a conflict with node-local-dns health checks. TCP/8090 is the base port and it gets incremented for each new pod, in case multiple pods are deployed on the same node. Unfortunately, TCP/8094 can conflict with a konnectivity-agent component on AKS. We thus need to move again. The conflict wasn't identified when we moved to TCP/8090 because we didn't have the same coverage for AKS at the time. The conflict was identified on GKE instead. Fixes: 018cb7d ("cilium-cli: Move ExternalDeploymentPort away from node-local-dns health") Signed-off-by: Paul Chaignon <paul.chaignon@gmail.com>
1 parent 8b2913e commit ef046fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cilium-cli/cli/connectivity.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func newCmdConnectivity(hooks api.Hooks) *cobra.Command {
4040
}
4141

4242
var params = check.Parameters{
43-
ExternalDeploymentPort: 8090,
43+
ExternalDeploymentPort: 8190,
4444
EchoServerHostPort: 4000,
4545
Writer: os.Stdout,
4646
SysdumpOptions: sysdump.Options{

0 commit comments

Comments
 (0)