Difference between revisions of "ansible notes"

From thelinuxwiki
Jump to: navigation, search
(platform modules)
(modules and plugins)
 
(4 intermediate revisions by one user not shown)
Line 56: Line 56:
 
  <br>
 
  <br>
 
  PLAY RECAP ****************************************************************************************************************************************
 
  PLAY RECAP ****************************************************************************************************************************************
  10.0.0.15                  : ok=2    changed=1    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0  
+
  10.0.0.15                  : ok=2    changed=1    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0
 +
 
 +
==modules and plugins==
 +
[https://docs.ansible.com/ansible/latest/module_plugin_guide/index.html Using Ansible modules and plugins]
 +
 
 +
[https://thecloudops.org/difference-between-modules-and-plugins/ Difference between Modules and Plugins in Ansible]
 +
 
 +
==collections==
 +
[https://docs.ansible.com/ansible/5/user_guide/collections_using.html Using collections]
 +
Collections are a distribution format for Ansible content that can include playbooks, roles, modules, and plugins. As modules move from the core Ansible repository into collections, the module documentation will move to the collections pages.
  
 
==network automation==
 
==network automation==
Line 74: Line 83:
 
===[https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_loops.html loops]===
 
===[https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_loops.html loops]===
  
 +
==output==
 +
===parsing json===
 +
use community.general.json_query which uses
 +
[https://jmespath.org/proposals/functions.html#join jmespath]
  
 +
[https://docs.ansible.com/ansible/latest/collections/community/general/docsite/filter_guide_selecting_json_data.html Selecting JSON data: JSON queries]
  
 
[[category:ansible]]
 
[[category:ansible]]
 +
 +
===writing to files===
 +
[https://www.uni-koeln.de/~pbogusze/posts/Ansible_export_facts_to_simple_csv_file.html Ansible export facts to simple csv file]

Latest revision as of 16:29, 7 May 2024

https://www.redhat.com/en/services/training/ex457-red-hat-certified-specialist-in-ansible-network-automation-exam?section=objectives

Contents

installation

pip install ansible

Adding variables to inventory

Connecting to hosts

Ansible Vault

Find out how to encrypt sensitive content in your inventory such as passwords and keys.

variable ansible_connection

listing connection types/plugins

$ ansible-doc -t connection -l
kubectl      Execute tasks in pods running on Kubernetes                                                                                      
libvirt_lxc  Run tasks in lxc containers via libvirt                                                                                          
chroot       Interact with local chroot                                                                                                       
psrp         Run tasks over Microsoft PowerShell Remoting Protocol                                                                            
network_cli  Use network_cli to run command on network appliances                                                                             
vmware_tools Execute tasks inside a VM via VMware Tools                                                                                       
ssh          connect via ssh client binary                                                                                                    
httpapi      Use httpapi to run command on network appliances                                                                                 
docker       Run tasks in docker containers                                                                                                   
...

playbooks

examples

- name: My first play
 hosts: myhosts
 tasks:
  - name: Print wall message
    ansible.builtin.command: /usr/bin/wall hello


- name: output test 
 hosts: myhosts
 tasks:
  - name: run uname thru awk 
    ansible.builtin.shell:  /usr/bin/uname -a | awk '{print $NF}'
    register: results
  - debug:
      var: results.stdout
$ ansible-playbook -i inventory.ini shelltest.yaml
PLAY [output test] ********************************************************************************************************************************

TASK [run uname thru awk] ************************************************************************************************************************* changed: [10.0.0.15]
TASK [debug] ************************************************************************************************************************************** ok: [10.0.0.15] => { "results.stdout": "GNU/Linux" }
PLAY RECAP **************************************************************************************************************************************** 10.0.0.15  : ok=2 changed=1 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0

modules and plugins

Using Ansible modules and plugins

Difference between Modules and Plugins in Ansible

collections

Using collections Collections are a distribution format for Ansible content that can include playbooks, roles, modules, and plugins. As modules move from the core Ansible repository into collections, the module documentation will move to the collections pages.

network automation

platform modules

platform modules (Maintained by Ansible Network Team)

checkpoint modules (gaia / mgmt)

fortinet

paloalto

programming

conditionals

loops

output

parsing json

use community.general.json_query which uses jmespath

Selecting JSON data: JSON queries

writing to files

Ansible export facts to simple csv file