beef up the AI/ML framework tests by adding InfluxDB as data source and populate...
[it/test.git] / XTesting / kubespray / facts.yml
1 ---
2 - name: Gather facts
3   hosts: k8s_cluster:etcd:calico_rr
4   gather_facts: False
5   tags: always
6   tasks:
7     - name: Gather minimal facts
8       setup:
9         gather_subset: '!all'
10
11     # filter match the following variables:
12     # ansible_default_ipv4
13     # ansible_default_ipv6
14     # ansible_all_ipv4_addresses
15     # ansible_all_ipv6_addresses
16     - name: Gather necessary facts (network)
17       setup:
18         gather_subset: '!all,!min,network'
19         filter: "ansible_*_ipv[46]*"
20
21     # filter match the following variables:
22     # ansible_memtotal_mb
23     # ansible_swaptotal_mb
24     - name: Gather necessary facts (hardware)
25       setup:
26         gather_subset: '!all,!min,hardware'
27         filter: "ansible_*total_mb"