-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.dist
More file actions
88 lines (69 loc) · 1.82 KB
/
Copy path.env.dist
File metadata and controls
88 lines (69 loc) · 1.82 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Main sys user in Yocto, Suse and Python containers, also used as Postgres DB owner
USER=user
# User for SSH access to Yocto VM
SSH_QEMU_USER=root
# User for SSH access to Suse VM
S_USER=suser
# Postgres DB name
POSTGRES_DB=os-testing-db
# Password for users, used in Postgres DB and for SSH access to Suse VM
PASSWORD=password
# User group for containers
GROUP=yoctogroup
# Yocto image name to build
OS_IMAGE=core-image-minimal
# CPU cores for each VM (Yocto and Suse)
CPUS=4
# RAM size in MB each VM (Yocto and Suse)
QEMU_VM_RAM=3072
# Paths
# Yocto directory for yocto sources
POKY_DIR=/home/${USER}/poky
# Yocto build directory
BUILD_DIR=${POKY_DIR}/build
# Suse directory for suse files
SUSE_DIR=/home/${USER}/suse
# Docker Network
DOCKER_NETWORK=yocto-network
SUBNET=10.5.0.0/24
GATEWAY=10.5.0.1
# IPs
# IP addresses for containers
PYTHON_ADDRESS=10.5.0.11
YOCTO_ADDRESS=10.5.0.10
SUSE_ADDRESS_156=10.5.0.13
POSTGRES_ADDRESS=10.5.0.20
VMETRICS_ADDRESS=10.5.0.25
METABASE_ADDRESS=10.5.0.30
METABASE_META_DB_ADDRESS=10.5.0.35
# IP address for QEMU monitor. Used for creating and restoring snapshoots
QEMU_MONITOR_ADDRESS=10.0.2.2
# Ports
# Metabase port
METABASE_PORT=3200
METABASE_META_DB_PORT=5445
# Port for Postgres DB
POSTGRES_PORT=5432
# VictoriaMetrics port
VMETRICS_PORT=8438
# Ports for Node Exporter
DEFAULT_NE_PORT=9100
YOCTO_NE_PORT=9100
SUSE_156_NE_PORT=9166
# Port for QEMU monitor
QEMU_MONITOR_PORT=4444
# Port for iperf3 tests
IPERF3_PORT=5201
# Port for Django interface for running tests and displaying results
DJANGO_PORT=8000
# SSH ports
# Port for external access to Suse VM
SSH_SUSE_PORT_156=1616
# Port for external access to Yocto VM
SSH_QEMU_PORT=2222
# Internal SSH port for Yocto and Suse VMs
SSH_TO_QEMU_PORT=22
# Metabase
METABASE_META_DB_NAME=metabase
METABASE_META_USER=metabase
METABASE_META_PASS=metabase