gouthamr: ecsantos Hi, I use nodepool connect openstack cloud. I configure ex-net(public flat) and in-net(private geneve) network on openstack. and I create instance on openstack dashboard success. but when I use nodepool start a server failed. nodepool launcher logs like follow. 172.32.65.0/24 is private network. public network is 172.0.1/24. I don't know why it don't use float-ip. ``` nodepool.exceptions.ConnectionTimeoutException: Timeout waiting for connection to 172.32.65.156 on port 22 2022-05-10 09:41:27,924 INFO nodepool.DeletedNodeWorker: Deleting deleting instance b884bffc-2d86-4b15-85dc-95b23fa8c701 from openstack-provider ``` and I configure openstack provider like follow. need I add ex-net and in-net both on nodepool.yaml. is this problem? ``` providers: - name: openstack-provider driver: openstack cloud: packstack region-name: 'RegionOne' clean-floating-ips: true image-name-format: '{image_name}-{timestamp}' boot-timeout: 120 launch-timeout: 900 rate: 1.0 diskimages: - name: ubuntu-focal pools: - name: main max-servers: 1 networks: - in-net security-groups: - default auto-floating-ip: True labels: - name: ubuntu-focal min-ram: 4096 flavor-name: m1.large diskimage: ubuntu-focal ```