4.9 KiB
weight |
---|
20 |
Configuration
By default, all vieter commands try to read in the TOML file ~/.vieterrc
for
configuration. The location of this file can be changed by using the -f
flag.
If the above file doesn't exist or you wish to override some of its settings,
configuration is also possible using environment variables. Every variable in
the config file has a respective environment variable of the following form:
say the variable is called api_key
, then the respective environment variable
would be VIETER_API_KEY
. In essence, it's the variable in uppercase prepended
with VIETER_
.
If a variable is both present in the config file & as an environment variable, the value in the environment variable is used.
{{< hint info >}}
Note
All environment variables can also be provided from a file by appending them
with _FILE
. This for example allows you to provide the API key from a Docker
secrets file.
{{< /hint >}}
Commands
The first argument passed to Vieter determines which command you wish to use.
Each of these can contain subcommands (e.g. vieter repos list
), but all
subcommands will use the same configuration. Below you can find the
configuration variable required for each command.
vieter server
log_level
: log verbosity level. Value should be one ofFATAL
,ERROR
,WARN
,INFO
orDEBUG
.- Default:
WARN
- Default:
log_file
: log file to write logs to.- Default:
vieter.log
(in the current directory)
- Default:
pkg_dir
: where Vieter should store the actual package archives.data_dir
: where Vieter stores the repositories, log file & database.api_key
: the API key to use when authenticating requests.default_arch
: this setting serves two main purposes:- Packages with architecture
any
are always added to this architecture. This prevents the server from being confused when anany
package is published as the very first package for a repository. - Git repositories added without an
arch
value use this value instead.
- Packages with architecture
vieter repos
api_key
: the API key to use when authenticating requests.address
: Base your URL of your Vieter instance, e.g. https://example.combase_image
: image to use when building a package usingvieter repos build
.- Default:
archlinux:base-devel
- Default:
vieter cron
log_level
: log verbosity level. Value should be one ofFATAL
,ERROR
,WARN
,INFO
orDEBUG
.- Default:
WARN
- Default:
log_file
: log file to write logs to.- Default:
vieter.log
(indata_dir
)
- Default:
address
: public URL of the Vieter repository server to build for. From this server the list of Git repositories is retrieved. All built packages are published to this server.api_key
: API key of the above server.data_dir
: directory to store log file in.base_image
: Docker image to use when building a package. Any Pacman-based distro image should work, as long as/etc/pacman.conf
is used &base-devel
exists in the repositories. Make sure that the image supports the architecture of your cron daemon.- Default:
archlinux:base-devel
(only works onx86_64
). If you requireaarch64
support, consider usingmenci/archlinuxarm:base-devel
(GitHub). This is the image used for the Vieter CI builds.
- Default:
max_concurrent_builds
: how many builds to run at the same time.- Default:
1
- Default:
api_update_frequency
: how frequently (in minutes) to poll the Vieter repository server for a new list of Git repositories to build.- Default:
15
- Default:
image_rebuild_frequency
: Vieter periodically builds a builder image using the configured base image. This makes sure build containers do not have to download a lot of packages when updating their system. This setting defines how frequently (in minutes) to rebuild this builder image.- Default:
1440
(every 24 hours)
- Default:
global_schedule
: build schedule for any Git repository that does not have a schedule defined.- Default:
0 3
(3AM every night)
- Default:
vieter logs
api_key
: the API key to use when authenticating requests.address
: Base your URL of your Vieter instance, e.g. https://example.com
Cron
log_level
: defines how much logs to show. Valid values are one ofFATAL
,ERROR
,WARN
,INFO
orDEBUG
. Defaults toWARN
api_key
: the API key to use when authenticating requests.address
: Base your URL of your Vieter instance, e.g. https://example.com. This must be the publicly facing URL of your Vieter instance.data_dir
: where Vieter stores the log file.base_image
: Docker image from which to create the builder images.max_concurrent_builds
: amount of builds to run at once.api_update_frequency
: how frequenty to check for changes in the repo list.image_rebuild+frequency
: how frequently to rebuild the builder imageglobal_schedule
: cron schedule to use for any repo without an individual schedule