2023-02-18 18:46:41 +00:00
|
|
|
---
|
|
|
|
# The primary openQA host
|
2023-02-28 18:55:52 +00:00
|
|
|
openqa_host: localhost
|
2023-02-18 18:46:41 +00:00
|
|
|
openqa_client_key: 1234567890ABCDEF
|
|
|
|
openqa_client_secret: 1234567890ABCDEF
|
|
|
|
|
|
|
|
# Default OpenQA user and group
|
|
|
|
openqa_user: geekotest
|
|
|
|
openqa_group: geekotest
|
|
|
|
|
|
|
|
# The number of workers to enable on this system
|
2023-02-28 18:55:52 +00:00
|
|
|
openqa_worker_count: 1
|
2023-02-18 18:46:41 +00:00
|
|
|
|
|
|
|
# Port range to open for VNC access to local workers.
|
|
|
|
# The max port should be 5990 + n where n is the total
|
|
|
|
# number of workers you want to enable on your system.
|
|
|
|
openqa_min_vnc_port: 5991
|
|
|
|
openqa_max_vnc_port: "{{ 5990 + openqa_worker_count|int }}"
|
|
|
|
|
|
|
|
# Port range to open for socket connections from the primary host.
|
|
|
|
openqa_min_socket_port: 20000
|
|
|
|
openqa_max_socket_port: 20089
|
|
|
|
|
|
|
|
# Packages to install
|
|
|
|
openqa_worker_packages:
|
|
|
|
- guestfs-tools
|
|
|
|
- libguestfs-xfs
|
|
|
|
- libvirt-daemon-config-network
|
|
|
|
- virt-install
|
|
|
|
- openqa-worker
|
|
|
|
- perl-REST-Client
|
|
|
|
- python3-libguestfs
|
|
|
|
- virt-install
|
|
|
|
- withlock
|
|
|
|
- firewalld
|
|
|
|
...
|