download_bins.yml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. register: result
  11. until: result is succeeded
  12. - name: Download Bins | Download Contiv tar file
  13. get_url:
  14. url: "{{ contiv_download_url }}"
  15. dest: "{{ contiv_current_release_directory }}"
  16. mode: 0755
  17. validate_certs: False
  18. environment:
  19. http_proxy: "{{ http_proxy|default('') }}"
  20. https_proxy: "{{ https_proxy|default('') }}"
  21. no_proxy: "{{ no_proxy|default('') }}"
  22. - name: Download Bins | Extract Contiv tar file
  23. unarchive:
  24. src: "{{ contiv_current_release_directory }}/netplugin-{{ contiv_version }}.tar.bz2"
  25. dest: "{{ contiv_current_release_directory }}"
  26. copy: no
  27. - name: Download Bins | Download cni tar file
  28. get_url:
  29. url: "{{ cni_bin_url }}"
  30. dest: "{{ cni_download_dir }}"
  31. mode: 0755
  32. validate_certs: False
  33. environment:
  34. http_proxy: "{{ http_proxy|default('') }}"
  35. https_proxy: "{{ https_proxy|default('') }}"
  36. no_proxy: "{{ no_proxy|default('') }}"
  37. register: download_file
  38. - name: Download Bins | Extract cni tar file
  39. unarchive:
  40. src: "{{ download_file.dest }}"
  41. dest: "{{ cni_download_dir }}"
  42. copy: no
  43. when: download_file.changed