Differences between revisions 3 and 4
Revision 3 as of 2020-09-20 08:37:31
Size: 1006
Editor: PieterSmit
Comment:
Revision 4 as of 2020-09-21 19:54:57
Size: 1190
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 16: Line 16:
== Ansible module setup return facts about a host {{{  * Ansible module setup return facts about a host {{{
Line 20: Line 20:
cat /tmp/facts/* | jq '.ansible_facts | .ansible_fqdn + ", " + .ansible_distribution + ", python:"+.ansible_python_version +", IP:" + ( .ansible_all_ipv4_addresses | join(",") ) '

Ansible

  • DevOps automation framework.

  • What makes Ansible unique is not host agent, all done through ssh.

Ansible module ping host

  • ping/test connectivity, create inventory file, and run module ping.

    vi inventory.file
    [mygrp]
    myserver
    
    ansible mygrp -i inventory.file -m ping
  • Ansible module setup return facts about a host

    ansible myserver -i inventory.file -m setup
    
    #Note: add "--tree /tmp/facts" to get facts from multiple servers in groupe, indexed by host
    cat /tmp/facts/* | jq '.ansible_facts | .ansible_fqdn + ", " + .ansible_distribution + ", python:"+.ansible_python_version +", IP:" + ( .ansible_all_ipv4_addresses   | join(",")  ) '

Ansible error's

  • 2020-09 [WARNING]: Unable to parse <file> as an inventory source

    • Debug with

      ansible --list-hosts all -i <file> -vvv
      • error seen "Skipping due to inventory source not existing or not being readable by the current user"
      • Apparently ansible tries to parse inventory files with different plugins, ini, yaml, etc.

Ansible (last edited 2023-09-06 00:52:04 by PieterSmit)