17 lines
581 B
YAML
17 lines
581 B
YAML
---
|
|
- name: create target directory for rook files
|
|
ansible.builtin.file:
|
|
path: "{{ ansible_search_path[0] }}/files/rook"
|
|
state: directory
|
|
mode: 0775
|
|
|
|
- name: download the rook manifests
|
|
ansible.builtin.uri:
|
|
url: https://raw.githubusercontent.com/rook/rook/{{ rook_version }}/deploy/examples/{{ item }}.yaml
|
|
dest: "{{ ansible_search_path[0] }}/files/rook/rook_{{ item }}_{{ rook_version }}.yaml"
|
|
creates: "{{ ansible_search_path[0] }}/files/rook/rook_{{ item }}_{{ rook_version }}.yaml"
|
|
mode: 0664
|
|
with_items:
|
|
- operator
|
|
- crds
|
|
- common |