-
Notifications
You must be signed in to change notification settings - Fork 200
Add support for provisioning over IPv6 #833
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
Add support for provisioning over IPv6 #833
Conversation
|
/hold |
e7da2cf to
5ed2a34
Compare
|
For IPv6 should be tested with openshift/installer#2727 |
|
Build FAILURE, see build http://10.8.144.11:8080/job/dev-tools/1390/ |
5ed2a34 to
e120c47
Compare
|
Build FAILURE, see build http://10.8.144.11:8080/job/dev-tools/1418/ |
e120c47 to
1acd104
Compare
|
Build FAILURE, see build http://10.8.144.11:8080/job/dev-tools/1426/ |
|
The installer IPv6 fixes have landed. This needs a rebase when you get a chance. I assume we also still need the UEFI/IPv6-compatible (snponly.efi) iPXE in the OpenShift ironic images |
1acd104 to
7e72f9b
Compare
|
Build FAILURE, see build http://10.8.144.11:8080/job/dev-tools/1502/ |
7e72f9b to
79f8408
Compare
|
Build FAILURE, see build http://10.8.144.11:8080/job/dev-tools/1511/ |
79f8408 to
840a403
Compare
|
Build SUCCESS, see build http://10.8.144.11:8080/job/dev-tools/1514/ |
840a403 to
558f9f8
Compare
|
Build SUCCESS, see build http://10.8.144.11:8080/job/dev-tools/1521/ |
02_configure_host.sh
Outdated
| if ! sudo iptables -C INPUT -i baremetal -p udp -m udp --dport 6230:${VBMC_MAX_PORT} -j ACCEPT 2>/dev/null ; then | ||
| sudo iptables -I INPUT -i baremetal -p udp -m udp --dport 6230:${VBMC_MAX_PORT} -j ACCEPT | ||
| if ! sudo $IPTABLES -C INPUT -i baremetal -p udp -m udp --dport 6230:6235 -j ACCEPT 2>/dev/null ; then | ||
| sudo $IPTABLES -I INPUT -i baremetal -p udp -m udp --dport 6230:6235 -j ACCEPT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry just noticed this: can you put back VBMC_MAX_PORT?
Otherwise this is good to go.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yup
ocp_install_env.sh
Outdated
| clusterOSImage: http://${MIRROR_IP}/images/${MACHINE_OS_IMAGE_NAME}?sha256=${MACHINE_OS_IMAGE_SHA256} | ||
| bootstrapOSImage: http://$(wrap_if_ipv6 $MIRROR_IP)/images/${MACHINE_OS_BOOTSTRAP_IMAGE_NAME}?sha256=${MACHINE_OS_BOOTSTRAP_IMAGE_UNCOMPRESSED_SHA256} | ||
| clusterOSImage: http://$(wrap_if_ipv6 $MIRROR_IP)/images/${MACHINE_OS_IMAGE_NAME}?sha256=${MACHINE_OS_IMAGE_SHA256} | ||
| provisioningNetworkCIDR: $PROVISIONING_NETWORK |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be removed, it's handled by the network_configuration function above, to keep compatability with 4.3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will do
Sticking to the same defaults as the metal3-dev-env support for consistency.
558f9f8 to
327d1c2
Compare
|
Thanks, LGTM |
|
Build FAILURE, see build http://10.8.144.11:8080/job/dev-tools/1523/ |
Sticking to the same defaults as the metal3-dev-env support
for consistency.