Is there any way to change public ip of driver node? when I try to launch two different instance (single node), I see those two machine have the same public ip.
I'm writing this command into notebook of each instance. I got the same ip.
from requests import get
ip = get('https://api.ipify.org').text
print('My public IP address is:', ip)