
Allow user to set a tenant in one of the configuration file's subsections, so that they don't have to provide the argument to the CLI all the time. Fix the API builds() call not building the API URL properly for a white-labeled root URL. Change-Id: Ib3b8b2be07ed580ac9f48738b9157a5d0e4d5e70
16 lines
649 B
Plaintext
16 lines
649 B
Plaintext
# Example of a zuul-client configuration file.
|
|
# Several sections can be created for different Zuul instances or settings.
|
|
# The "example" section below can be used when calling zuul-client like so:
|
|
#
|
|
# zuul-client --use-conf example ...
|
|
|
|
[example]
|
|
url=https://example.com/zuul/
|
|
# A default tenant can be specified in the configuration file; it will be
|
|
# overriden by the --tenant argument if set.
|
|
# Note that specifying a tenant is not necessary with a white-labeled tenant API URL,
|
|
# see https://zuul-ci.org/docs/zuul/howtos/installation.html#white-labeled-tenant
|
|
tenant=mytenant
|
|
# verify_ssl=False
|
|
auth_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9
|