diff options
author | Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com> | 2018-08-21 17:08:30 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-08-21 17:08:30 +0000 |
commit | c6175b5bc59706c3a423fe2781f99e32930bb570 (patch) | |
tree | e23ec9fe4c60ccba1ad4fe526127787abd955b4c /ansible/group_vars/all.yml | |
parent | 5c6666157a113cae7b5ab52297b8bc482d8484e0 (diff) | |
parent | a16d55707c10a368b5aa2f9b7e595751978c3b04 (diff) |
Merge "Add virtual image generation to install script"
Diffstat (limited to 'ansible/group_vars/all.yml')
-rw-r--r-- | ansible/group_vars/all.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml index 359968277..9f5293272 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -1,9 +1,15 @@ ---
target_os: "Ubuntu"
YARD_IMG_ARCH: "amd64"
+IMG_PROPERTY: "normal"
clone_dest: /opt/tempT
release: xenial
normal_image_file: "{{ workspace }}/yardstick-image.img"
nsb_image_file: "{{ workspace }}/yardstick-nsb-image.img"
ubuntu_image_file: /tmp/workspace/yardstick/yardstick-trusty-server.raw
-proxy_env: {}
+proxy_env:
+ PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/bin
+ http_proxy: "{{ lookup('env', 'http_proxy') }}"
+ https_proxy: "{{ lookup('env', 'https_proxy') }}"
+ ftp_proxy: "{{ lookup('env', 'ftp_proxy') }}"
+ no_proxy: "{{ lookup('env', 'no_proxy') }}"
|