[CI] Fix wheel url for CentOS

CentOS wheels do not differentiate between minor versions atm.

Change-Id: I5365c813bab5e3205fd34eb64dc3337f192d67d4
(cherry picked from commit a3ef68d91c)
This commit is contained in:
Radosław Piliszek 2020-08-11 09:36:52 +02:00
parent 3c435cb078
commit c8123bf6f3
1 changed files with 1 additions and 1 deletions

View File

@ -10,4 +10,4 @@ nodepool_oraclelinux_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/oraclelinux
nodepool_percona_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/percona" nodepool_percona_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/percona"
# NOTE(hrw): wheel cache goes over 80/443 not on 8080 # 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 }}" nodepool_wheel_mirror: "https://{{ zuul_site_mirror_fqdn }}/wheel/{{ ansible_distribution | lower }}-{{ (ansible_os_family == 'Debian') | ternary(ansible_distribution_version, ansible_distribution_major_version) }}-{{ ansible_architecture | lower }}"