forked from google/cloud-android-orchestration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcvdr.toml
37 lines (29 loc) · 1.15 KB
/
cvdr.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Configuration for the cvdr program when the Cloud Android Orchestration
# service uses DockerInstanceManager.
# Default service
SystemDefaultService = "dockerIM"
[Services.dockerIM]
# ServiceURL should be the full path to the service API without including the
# api version.
# Please set `CLOUD_ORCHESTRATOR_IP_ADDRESS` according to your cloud
# orchestrator deployment. Typically this is the IP address of your server.
# ServiceURL = "http://${CLOUD_ORCHESTRATOR_IP_ADDRESS}:8080"
ServiceURL = "http://localhost:8080"
# The zone where the users' host VMs will be created.
Zone = "local"
# The proxy URL.
# When this configuration is required, please uncomment below configuration and
# set `SOCKS5_PORT` according to your SSH dynamic port forwarding.
# Proxy = "socks5://localhost:${SOCKS5_PORT}"
# The configuration for cvdr to get your username from the unix system.
# This is required when the Cloud Android Orchestration service uses
# UsernameOnlyAccountManager.
Authn = {
HTTPBasicAuthn = {
UsernameSrc = "unix"
}
}
# The host config for the Cloud Android Orchestration service.
Host = {}
# Agent name used for ADB connection.
ConnectAgent = "websocket"