diff --git a/tests/templates/template_overrides.j2 b/tests/templates/template_overrides.j2 index 8997bc4ed9..9a36a78144 100644 --- a/tests/templates/template_overrides.j2 +++ b/tests/templates/template_overrides.j2 @@ -6,6 +6,7 @@ ENV PIP_INDEX_URL {{ nodepool_pypi_mirror }} ENV PIP_TRUSTED_HOST {{ nodepool_mirror_host }} +ENV PIP_EXTRA_INDEX_URL {{ nodepool_wheel_mirror }} RUN echo registry={{ nodepool_npmjs_proxy }} > /etc/npmrc \ && mkdir -p /usr/etc \ diff --git a/tests/vars/zuul.yml b/tests/vars/zuul.yml index e74e038f32..ca0454eea5 100644 --- a/tests/vars/zuul.yml +++ b/tests/vars/zuul.yml @@ -8,3 +8,6 @@ nodepool_grafana_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/grafana/" nodepool_cbs_centos_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/cbs.centos" nodepool_oraclelinux_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/oraclelinux/" nodepool_percona_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/percona" + +# NOTE(hrw): wheel cache goes over 80/443 not on 8080 +nodepool_wheel_mirror: "https://{{ zuul_site_mirror_fqdn }}/wheel/{{ ansible_distribution | lower }}-{{ ansible_distribution_version }}-{{ ansible_architecture | lower }}"