15 lines
354 B
YAML
15 lines
354 B
YAML
---
|
|
- set_fact:
|
|
hwpoints: 1
|
|
when: ansible_memtotal_mb|int <= 2048 and ansible_processor_vcpus|int <= 2
|
|
|
|
- set_fact:
|
|
hwpoints: 2
|
|
when: ansible_memtotal_mb|int <= 4096 and ansible_processor_vcpus|int <= 2
|
|
|
|
- set_fact:
|
|
hwpoints: 3
|
|
when: ansible_memtotal_mb|int > 4096 and ansible_processor_vcpus|int >= 4
|
|
|
|
- setup: filter=ansible_local
|