Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve documentation of cache service related variables in config #5395

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions etc/openqa/workers.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,24 @@
[global]
# space separated list of webuis to connect to (empty defaults to localhost)
#HOST = http://openqa.example.host
# per webui you can define if you want to get the assets and tests over NFS
# (define a SHARE_DIRECTORY, default /var/lib/openqa/share) or http/rsync.
# For the later you need to define a cache directory that is big enough.
# Additionally you need to define the rsync URI to get
# /var/lib/openqa/tests/ (TESTPOOLSERVER) in the webui section

# Specify a cache directory for assets and tests to sync them automatically via
# http/rsync; the specified path is just an example but what you would usually
# use on a normal setup
# Additionally you need to define the rsync URI to get /var/lib/openqa/tests/
# via the TESTPOOLSERVER variable in the webui sections as shown below
# If no CACHEDIRECTORY is specified these files are supposed to be mounted
# at the SHARE_DIRECTORY (by default /var/lib/openqa/share) via e.g. NFS
#CACHEDIRECTORY = /var/lib/openqa/cache

# Limit size of CACHEDIRECTORY to the specified value in GiB (50 GiB by default)
#CACHELIMIT = 50

# Limit size of CACHEDIRECTORY to preserve the specified percentage of free disk
# space on the filesystem it is located on (the default is NO limit; the 10 %
# are just an example)
#CACHE_MIN_FREE_PERCENTAGE = 10

# host address (domain name or IP address) the web UI can reach the worker by
# (required by the web UI's developer mode and backends using jump-hosts to
# reach back to os-autoinst; set if the automatically deduced value is not
Expand Down
Loading