-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.toml.example
45 lines (39 loc) · 1.09 KB
/
config.toml.example
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
38
39
40
41
42
43
44
45
bind_address = "0.0.0.0:9999"
public_url = "https://ci.ixy.rs"
# How many jobs can be in the queue at most
job_queue_size = 10
log_directory = "logs"
[github]
bot_name = "ixy-ci"
api_token = "redacted"
# Names are case-sensitive
[github.webhook_secrets]
"emmericp/ixy" = "redacted"
"ixy-languages/ixy.rs" = "redacted"
[openstack]
# VM flavor to be used
flavor ="lrz.medium"
# VM base image to be used
image ="Debian-10-buster"
# SSH login name for the selected base image
ssh_login = "debian"
# SSH keypair to be used
keypair ="ixy-ci"
# Path to the private key corresponding to the selected keypair
private_key_path ="/home/ixy-ci/.ssh/id_rsa"
# Exported from OpenStack (except project domain which must be queried manually)
auth_url = "https://cc.lrz.de:5000/v3"
user_name = "user"
user_domain = "ADS"
password = "redacted"
project_name = "project"
project_domain = "project_domain"
[test]
# How many packets are captured for the test
packets = 100_000
# PCI addresses of the VirtIO NICs
[test.pci_addresses]
pktgen = "0000:00:06.0"
fwd_src = "0000:00:06.0"
fwd_dst = "0000:00:07.0"
pcap = "0000:00:06.0"