Add proxy support for zuul

Change-Id: I5dfa8dc046d874111468613d979a824a15f16d01
This commit is contained in:
Svetlana Shturm 2021-02-24 15:50:39 -06:00
parent d997106369
commit e9f1cd40ce
2 changed files with 9 additions and 0 deletions

View File

@ -14,3 +14,7 @@
make: make:
chdir: "{{ work_dir }}/charts" chdir: "{{ work_dir }}/charts"
target: all target: all
params:
HTTPS_PROXY: "{{ proxy.https_proxy }}"
HTTP_PROXY: "{{ proxy.http_proxy }}"
NO_PROXY: "{{ proxy.noproxy }}"

View File

@ -11,6 +11,11 @@
# limitations under the License. # limitations under the License.
- project: - project:
vars:
proxy:
http_proxy: ""
https_proxy: ""
noproxy: ""
check: check:
jobs: jobs:
- openstack-tox-docs: &docs - openstack-tox-docs: &docs