-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
feat(runner-controller): Add public IP address to network interface creation #89
base: main
Are you sure you want to change the base?
Conversation
…reation This commit adds a new feature to the runner-controller by including the creation of a public IP address when creating a network interface. The public IP address is created with a name and SKU, which are specified in the code. This change is specifically so I'm able to access the VMs that are spun up by GATR. I need this access to debug why the `runner-init` script for Windows is not completing successfully.
This commit fixes an issue where the public IP address was not being created before being referenced by the network interface card (NIC). The code now creates the public IP address first, waits for it to be ready, and then references its ID when creating the NIC. This ensures that the NIC is properly configured with a valid public IP address.
Will this change add public ip to all runner Vm's being created? |
This PR (single commit) adds a new feature to the runner-controller by including the creation of a public IP address when creating a network interface. The public IP address is created with a name and SKU, which are specified in the code.
This change is specifically so I'm able to access the VMs that are spun up by GATR. I need this access to debug why the
runner-init
script for Windows is not completing successfully.