check-compose: set base URL for compose check reports
This commit is contained in:
parent
d45c56decb
commit
b24574c8c1
4 changed files with 16 additions and 0 deletions
|
@ -20,6 +20,7 @@ wikitcms_password: "{{ prod_wikitcms_password }}"
|
||||||
checkcompose_emailfrom: rawhide@fedoraproject.org
|
checkcompose_emailfrom: rawhide@fedoraproject.org
|
||||||
checkcompose_emailto: "test@lists.fedoraproject.org devel@lists.fedoraproject.org"
|
checkcompose_emailto: "test@lists.fedoraproject.org devel@lists.fedoraproject.org"
|
||||||
checkcompose_smtp: bastion.phx2.fedoraproject.org
|
checkcompose_smtp: bastion.phx2.fedoraproject.org
|
||||||
|
checkcompose_url: "https://openqa.fedoraproject.org"
|
||||||
|
|
||||||
deployment_type: prod
|
deployment_type: prod
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,8 @@ wikitcms_password: "{{ stg_wikitcms_password }}"
|
||||||
# For now let's not run any scheduled jobs on stg
|
# For now let's not run any scheduled jobs on stg
|
||||||
openqa_triggers: []
|
openqa_triggers: []
|
||||||
|
|
||||||
|
checkcompose_url: "https://openqa.stg.fedoraproject.org"
|
||||||
|
|
||||||
deployment_type: stg
|
deployment_type: stg
|
||||||
|
|
||||||
# http and NFS
|
# http and NFS
|
||||||
|
|
|
@ -1,4 +1,11 @@
|
||||||
# Optional vars
|
# Optional vars
|
||||||
|
# - checkcompose_server
|
||||||
|
## string - hostname of openQA server to connect to (if not set, openQA
|
||||||
|
## client configuration will determine this, default will be
|
||||||
|
## localhost)
|
||||||
|
# - checkcompose_url
|
||||||
|
## string - base URL for openQA result links (if not set, will be
|
||||||
|
## the URL the client actually wound up connecting to)
|
||||||
# - checkcompose_wait
|
# - checkcompose_wait
|
||||||
## string - (digits) time in minutes to wait for openQA tests to complete
|
## string - (digits) time in minutes to wait for openQA tests to complete
|
||||||
## before sending the report (defaults to 480)
|
## before sending the report (defaults to 480)
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
[main]
|
[main]
|
||||||
|
{% if checkcompose_server is defined %}
|
||||||
|
server: {{ checkcompose_server }}
|
||||||
|
{% endif %}
|
||||||
|
{% if checkcompose_url is defined %}
|
||||||
|
url: {{ checkcompose_url }}
|
||||||
|
{% endif %}
|
||||||
{% if checkcompose_wait is defined %}
|
{% if checkcompose_wait is defined %}
|
||||||
wait: {{ checkcompose_wait }}
|
wait: {{ checkcompose_wait }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue