You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
343 B

  1. ---
  2. - name: CNI | make sure /opt/cni/bin exists
  3. file:
  4. path: /opt/cni/bin
  5. state: directory
  6. mode: 0755
  7. owner: root
  8. group: root
  9. - name: CNI | Copy cni plugins
  10. unarchive:
  11. src: "{{ local_release_dir }}/cni-plugins-linux-{{ image_arch }}-{{ cni_version }}.tgz"
  12. dest: "/opt/cni/bin"
  13. mode: 0755
  14. remote_src: yes