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.

13 lines
333 B

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