Skip to content

Commit

Permalink
Merge pull request #5395 from Martchus/doc-2
Browse files Browse the repository at this point in the history
Improve documentation of cache service related variables in config
  • Loading branch information
mergify[bot] authored Dec 13, 2023
2 parents 6d98001 + e3ddc18 commit e68161c
Showing 1 changed file with 16 additions and 5 deletions.
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

0 comments on commit e68161c

Please sign in to comment.