1.6.0
Here is what I’ve been doing after the slice has been set up. I’m not really sure if there is a better way to fix this:
command = ‘echo “127.0.0.1 $HOSTNAME” | sudo tee -a /etc/hosts’
node1 = slice.get_node(name=node1_name)
stdout, stderr = node1.execute(command)
If you are trying to reach IPv4 (8.8.8.8) from inside a container, then the issue likely is that you need to enable IPv6 in the container network since the management network you are on is IPv6.
Thank you. It turns out Minikube doesn’t support IPv6 at all, which is a surprise to me. Thank you for your reply.