1c62af0c95
* Download Calico KDD CRDs * Replace kustomize with lineinfile and use ansible assemble module * Replace find+lineinfile by sed in shell module to avoid nested loop * add condition on sed * use block for kdd tasks + remove supernumerary kdd manifest apply in start "Start Calico resources"
11 lines
360 B
YAML
11 lines
360 B
YAML
---
|
|
- name: extract_file | Unpacking archive
|
|
unarchive:
|
|
src: "{{ download.dest }}"
|
|
dest: "{{ download.dest | dirname }}"
|
|
owner: "{{ download.owner | default(omit) }}"
|
|
mode: "{{ download.mode | default(omit) }}"
|
|
copy: no
|
|
extra_opts: "{{ download.unarchive_extra_opts|default(omit) }}"
|
|
when:
|
|
- download.unarchive | default(false)
|