Differences between revisions 9 and 10
Revision 9 as of 2021-10-04 21:07:07
Size: 1933
Editor: PieterSmit
Comment:
Revision 10 as of 2022-10-21 09:18:55
Size: 2033
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:

== Idempotent shell command ==
 * https://ansibledaily.com/idempotent-shell-command-in-ansible/

Ansible

  • DevOps automation framework.

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

Idempotent shell command

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(",")  ) '
    
    #or
     jq 'if( .unreachable == true ) then ( input_filename +" <<Missing data" ) else ( .ansible_facts | .ansible_fqdn + ", " + .ansible_distribution + ", python:"+.ansible_python_version +", IP:" + ( .ansible_all_ipv4_addresses   | join(",")  ) ) end ' /tmp/facts/*

Encrypt/Decrypt secrets with ansible-vault before saving in git

$ ANSIBLE_VAULT_PASSWORD_FILE="~/.ansible-vault-password" ansible-vault encrypt secrets.auto.tfvars

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.
  • 2021-10 "sudo: sorry, you must have a tty to run sudo"
    • Was caused by /etc/ssh/sshd.conf setting  Defaults    requiretty 

    • Fix by adding  Defaults:User1,UserX    !requiretty 

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