b025023dd2
We set stage_compress_logs to false to stop compressing files during the stage-output role. We are planning to make this the default in zuul-jobs but this allows us to test it in opendev first. Change-Id: I5e959912f4e2e9df264b0434f7a73f9f5a439102
21 lines
942 B
YAML
21 lines
942 B
YAML
# This file contains ansible variables that are used by our zuul-executors.
|
|
---
|
|
# NOTE(ianw): 2019-05 this list of clouds will grow as we provision
|
|
# new opendev.org based mirrors, but then eventually be removed once
|
|
# all are updated.
|
|
zuul_site_mirror_fqdn: >-
|
|
{%- if nodepool.region + "." + nodepool.cloud in [ "DFW.rax", "ORD.rax", "regionOne.fortnebula", "mtl01.inap" ] -%}
|
|
mirror.{{ nodepool.region | lower }}.{{ nodepool.cloud | lower }}.opendev.org
|
|
{%- else -%}
|
|
mirror.{{ nodepool.region | lower }}.{{ nodepool.cloud | lower }}.openstack.org
|
|
{%- endif -%}
|
|
zuul_site_traceroute_host: opendev.org
|
|
zuul_site_image_manifest_files:
|
|
- /etc/dib-builddate.txt
|
|
- /etc/image-hostname.txt
|
|
zuul_output_dir: "{{ ansible_user_dir }}/zuul-output"
|
|
bindep_command: /usr/bindep-env/bin/bindep
|
|
# We are planning to change this value in the upstream role, but
|
|
# are testing that change early via opendev site vars
|
|
stage_compress_logs: false
|