b198c57cfb
If the playbook is run multiple times or a host already has swap configured, re-adding swap over the existing file will cause untold problems. Also, it will not persist across reboots unless added to fstab. Avoid this by checking if any swap is active. If not create a unique swapfile and format it. Then enable it to persist across reboots. Signed-off-by: Chris Evich <cevich@redhat.com>
11 lines
418 B
YAML
11 lines
418 B
YAML
---
|
|
|
|
# When swap setup is necessary, make it this size
|
|
swapfileGB: 8
|
|
|
|
# For results.yml Paths use rsync 'source' conventions
|
|
artifacts: "/tmp/artifacts" # Base-directory for collection
|
|
crio_integration_filepath: "{{ artifacts }}/testout.txt"
|
|
crio_node_e2e_filepath: "{{ artifacts }}/junit_01.xml"
|
|
result_dest_basedir: '{{ lookup("env","WORKSPACE") |
|
|
default(playbook_dir, True) }}/artifacts'
|