-
Notifications
You must be signed in to change notification settings - Fork 449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] ip address not be cleaned in vpc-nat-gw pod after eip is released #4718
Comments
Hey @hackerain! I'm here to help you with any bugs, questions, or contributions. Let me know how I can assist you. It seems like you're experiencing an issue where the IP address in the In your case, the problem appears to be with the command used to delete the EIP. The command executed is: bash /kube-ovn/nat-gateway.sh eip-del 10.1.69.0/24 However, the correct command should specify the exact IP address to be deleted, like this: bash /kube-ovn/nat-gateway.sh eip-del 10.1.69.205/24 To resolve this, you may need to adjust the script or the logic that constructs the command to ensure it uses the specific IP address of the EIP being released. This will ensure that the IP address is correctly removed from the network interface in the |
The ip address in vpc-nat-gw pod is not cleaned after the eip is deleted. This patch fix this problem.
The ip address in vpc-nat-gw pod is not cleaned after the eip is deleted. This patch fix this problem.
The ip address in vpc-nat-gw pod is not cleaned after the eip is deleted. This patch fix this problem. Signed-off-by: Rain Suo <[email protected]>
The ip address in vpc-nat-gw pod is not cleaned after the eip is deleted. This patch fix this problem. Signed-off-by: Rain Suo <[email protected]>
The ip address in vpc-nat-gw pod is not cleaned after the eip is deleted. This patch fix this problem. Signed-off-by: Rain Suo <[email protected]>
Kube-OVN Version
master
Kubernetes Version
v1.29.3
Operation-system/Kernel Version
centos 9
Description
the ip address in vpc-nat-gw pod is not cleaned after eip is released
Steps To Reproduce
we can see the eip del command is
this will not delete the ip address, the correct command should looks like:
Current Behavior
look at "Steps To Reproduce"
Expected Behavior
the ip address in vpc-nat-gw pod should be deleted after eip is released, or it will cause duplicated eip.
The text was updated successfully, but these errors were encountered: