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.

15 lines
359 B

  1. ---
  2. - name: Cloud | Set cni directory permissions
  3. file:
  4. path: /opt/cni/bin
  5. state: directory
  6. owner: kube
  7. recurse: true
  8. mode: "u=rwX,g-rwx,o-rwx"
  9. - name: Canal | Copy cni plugins
  10. unarchive:
  11. src: "{{ local_release_dir }}/cni-plugins-{{ image_arch }}-{{ cni_version }}.tgz"
  12. dest: "/opt/cni/bin"
  13. mode: 0755
  14. remote_src: yes