fix: remove CI tailscale dependency and allow runner CIDR exception
This commit is contained in:
@@ -32,12 +32,11 @@ def main():
|
||||
worker_names = outputs["worker_names"]["value"]
|
||||
worker_ips = outputs["worker_ips"]["value"]
|
||||
worker_private_ips = outputs["worker_private_ips"]["value"]
|
||||
tailnet = outputs["tailscale_tailnet"]["value"]
|
||||
|
||||
control_planes = [
|
||||
{
|
||||
"name": name,
|
||||
"public_ip": f"{name}.{tailnet}" if tailnet else public_ip,
|
||||
"public_ip": public_ip,
|
||||
"private_ip": private_ip,
|
||||
}
|
||||
for name, public_ip, private_ip in zip(
|
||||
@@ -48,7 +47,7 @@ def main():
|
||||
workers = [
|
||||
{
|
||||
"name": name,
|
||||
"public_ip": f"{name}.{tailnet}" if tailnet else public_ip,
|
||||
"public_ip": public_ip,
|
||||
"private_ip": private_ip,
|
||||
}
|
||||
for name, public_ip, private_ip in zip(
|
||||
|
||||
Reference in New Issue
Block a user