k8s-clusters/ansible/provision.yaml

15 lines
306 B
YAML
Raw Normal View History

2022-02-01 17:05:06 -06:00
---
- name: provision Arch Linux hosts
hosts: all
roles:
- role: './arch-linux'
gather_facts: yes
tasks:
- name: print all available facts
ansible.builtin.debug:
var: ansible_facts
- name: print os family
ansible.builtin.debug:
var: ansible_facts.os_family