download_bins.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ---
  2. - name: Download Bins | Create directory for current Contiv release
  3. file:
  4. path: "{{ contiv_current_release_directory }}"
  5. state: directory
  6. - name: Install bzip2
  7. yum:
  8. name: bzip2
  9. state: installed
  10. - name: Download Bins | Download Contiv tar file
  11. get_url:
  12. url: "{{ contiv_download_url }}"
  13. dest: "{{ contiv_current_release_directory }}"
  14. mode: 0755
  15. validate_certs: False
  16. environment:
  17. http_proxy: "{{ http_proxy|default('') }}"
  18. https_proxy: "{{ https_proxy|default('') }}"
  19. no_proxy: "{{ no_proxy|default('') }}"
  20. - name: Download Bins | Extract Contiv tar file
  21. unarchive:
  22. src: "{{ contiv_current_release_directory }}/netplugin-{{ contiv_version }}.tar.bz2"
  23. dest: "{{ contiv_current_release_directory }}"
  24. copy: no
  25. - name: Download Bins | Download cni tar file
  26. get_url:
  27. url: "{{ cni_bin_url }}"
  28. dest: "{{ cni_download_dir }}"
  29. mode: 0755
  30. validate_certs: False
  31. environment:
  32. http_proxy: "{{ http_proxy|default('') }}"
  33. https_proxy: "{{ https_proxy|default('') }}"
  34. no_proxy: "{{ no_proxy|default('') }}"
  35. register: download_file
  36. - name: Download Bins | Extract cni tar file
  37. unarchive:
  38. src: "{{ download_file.dest }}"
  39. dest: "{{ cni_download_dir }}"
  40. copy: no
  41. when: download_file.changed