We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Install of a kURL cluster does not set IPv6 forwarding.
On an IPv6 node run curl https://kurl.sh/f7deea4 | sudo bash
curl https://kurl.sh/f7deea4 | sudo bash
IPv6 forwarding on IPv6 node(s) should be set to 1 during install.
1
Setting can be set in the kubernetes_sysctl_config function inside kURL script
kubernetes_sysctl_config
if ! cat /etc/sysctl.conf | grep "^net.ipv6.conf.all.forwarding" | tail -n1 | grep -Eq "^net.ipv6.conf.all.forwarding\s*=\s*1"; then echo "net.ipv6.conf.all.forwarding = 1" >> /etc/sysctl.conf fi
The text was updated successfully, but these errors were encountered:
@areed do you want to take a look at this?
Sorry, something went wrong.
No branches or pull requests
Description
Install of a kURL cluster does not set IPv6 forwarding.
Reproduction Steps
On an IPv6 node run
curl https://kurl.sh/f7deea4 | sudo bash
Expected Behavior
IPv6 forwarding on IPv6 node(s) should be set to
1
during install.Additional Information
Setting can be set in the
kubernetes_sysctl_config
function inside kURL scriptThe text was updated successfully, but these errors were encountered: