From a7e874f76e52267de5c932f026d93b3d0e90ccb8 Mon Sep 17 00:00:00 2001 From: Eduardo Silva Date: Wed, 31 Dec 2025 16:13:57 -0300 Subject: [PATCH] remove wrong IP forwarding configuration from entrypoint script --- containers/cluster_node/entrypoint.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/containers/cluster_node/entrypoint.sh b/containers/cluster_node/entrypoint.sh index 3825e44..ad77e0d 100644 --- a/containers/cluster_node/entrypoint.sh +++ b/containers/cluster_node/entrypoint.sh @@ -6,9 +6,6 @@ if [ -n "$TZ" ]; then ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone fi -# Enable IP forwarding -sysctl -w net.ipv4.ip_forward=1 > /dev/null 2>&1 || echo "Warning: Could not set net.ipv4.ip_forward" - # Check required variables if [ -z "$MASTER_SERVER_ADDRESS" ]; then echo "ERROR: MASTER_SERVER_ADDRESS is not set."