Lines Matching full:servers
7 """Tool to sync lab servers to the "Allowed Networks" of a CloudSQL instance.
11 read the list of lab servers from server database and update the list of
15 servers to the "Allowed Networks" list of the CloudSQL instance. This allows
16 servers that do not run Autotest code can access the CloudSQL instance.
20 should be prohibited. Instead, the servers should be added to
80 @param extra_servers: Extra servers to be included in the "Allowed Networks"
84 # Get the IP address of all servers need access to CloudSQL instance.
86 servers = [s['hostname'] for s in rpc.run('get_servers')
90 servers.extend(extra_servers.split(','))
91 # Extra servers can be listed in CLOUD/tko_access_servers shadow config.
95 servers.extend(tko_servers.split(','))
96 print('Adding servers %s to access list for projects %s' % (servers,
100 for name in servers:
150 help=('Extra servers to be included in the "Allowed '