Ansible - RIP Tutorial

3y ago
24 Views
2 Downloads
1.27 MB
68 Pages
Last View : 1m ago
Last Download : 3m ago
Upload by : Milena Petrie
Transcription

ansible#ansible

Table of ContentsAbout1Chapter 1: Getting started with ansible2Remarks2Examples2Hello, World2Test connection and configuration with ping3Inventory3Provisioning remote machines with Ansible3ansible.cfg4Chapter 2: Ansible ArchitectureExamplesUnderstanding Ansible ArchitectureChapter 3: Ansible group variablesExamplesGroup variables with static inventoryChapter 4: Ansible Group VarsExamplesExample group vars/development, and whyChapter 5: Ansible install ow use ansible to install mysql binary fileChapter 6: Ansible: LoopingExamples161818with items - simple list18with items - predefined list18with items - predefined dictionary18with items - dictionary19Nested loops19Chapter 7: Ansible: Loops and Conditionals21

Remarks21Examples21What kinds of conditionals to use?21[When] Condition: ansible os family Lists21Common use21All Lists21When Condition22Basic Usage22Conditional Syntax and Logic23Single condition23Boolean Filter23Multiple Conditions23Get ansible os family and ansible pkg mgr with setup24Simple "When" Example(s)24Using until for a retry looping alive check25Chapter 8: Become (Privilege Escalation)26Introduction26Syntax26Examples26Only in a task26Run all role tasks as root26Run a role as root26Chapter 9: Dynamic inventory27Remarks27Examples27Dynamic inventory with login credentialsChapter 10: GalaxyExamplesSharing roles with Ansible GalaxyChapter 11: GalaxyExamples272929293030

Basic commandsChapter 12: How To Create A DreamHost Cloud Server From An Ansible PlaybookExamples303131Install Shade library31Write a Playbook to Launch a Server31Running the Playbook32Chapter 13: Installation33Introduction33Examples33Installing Ansible on Ubuntu33Installing Ansible on MacOS33Installation on Red Hat based systems33Installing from source34Installation on Amazon Linux from git repo34Installing Ansible On Any OS(windows) Machine Using Virtual Box Vagrant35Alternative solution:Chapter 14: Introduction to playbooksExamples363737Overview37Playbook's structure37Play's structure38Tags39Chapter 15: Inventory40Parameters40Examples41Inventory with username and password41Inventory with custom private key41Inventory with custom SSH port41Pass static inventory to ansible-playbook42Pass dynamic inventory to ansible-playbook42Inventory, Group Vars, and You42Hosts file43

Chapter 16: LoopsExamples4545Copy multiple files in a single task45Install multiple packages in a single task45Chapter 17: RolesExamples4646Using roles46Role dependencies47Separating distribution specific tasks and variables inside a role48Chapter 18: Secret encryption49Remarks49Examples49Encrypting sensitive structured data49Using lookup pipes to decrypt non-structured vault-encrypted data49Using local action to decrypt vault-encrypted templates49Chapter 19: Using Ansible with Amazon Web Services51Remarks51Examples51How to start EC2 instance from official Amazon AMIs, modify it and store it as new AMI51How to properly configure Ansible to connect to Amazon Web Services54Chapter 20: Using Ansible with ples56Check your Ansible version57Gather informations from OpenStack GUI to configure Ansible57Write the ansible playbook to create the instance58Gather informations about our new instance59Get your new instance public IP60Delete our instance60Credits62

AboutYou can share this PDF with anyone you feel could benefit from it, downloaded the latest versionfrom: ansibleIt is an unofficial and free ansible ebook created for educational purposes. All the content isextracted from Stack Overflow Documentation, which is written by many hardworking individuals atStack Overflow. It is neither affiliated with Stack Overflow nor official ansible.The content is released under Creative Commons BY-SA, and the list of contributors to eachchapter are provided in the credits section at the end of this book. Images may be copyright oftheir respective owners unless otherwise specified. All trademarks and registered trademarks arethe property of their respective company owners.Use the content presented in this book at your own risk; it is not guaranteed to be correct noraccurate, please send your feedback and corrections to info@zzzprojects.comhttps://riptutorial.com/1

Chapter 1: Getting started with ansibleRemarksThis section provides an overview of what ansible is, and why a developer might want to use it.It should also mention any large subjects within ansible, and link out to the related topics. Sincethe Documentation for ansible is new, you may need to create initial versions of those relatedtopics.ExamplesHello, WorldCreate a directory called ansible-helloworld-playbookmkdir ansible-helloworld-playbookCreate a file hosts and add remote systems how want to manage. As ansible relies on ssh toconnect the machines, you should make sure they are already accessible to you in ssh from yourcomputer.192.168.1.1192.168.1.2Test connection to your remote systems using the Ansible ping module.ansible all -m ping -kIn case of success it should return something like that192.168.1.1 SUCCESS {"changed": false,"ping": "pong"}192.168.1.2 SUCCESS {"changed": false,"ping": "pong"}In case of error it should return192.168.1.1 UNREACHABLE! {"changed": false,"msg": "Failed to connect to the host via ssh.","unreachable": true}https://riptutorial.com/2

Test sudo access withansible all -m ping -k -bTest connection and configuration with pingansible -i hosts -m ping targethostdefines the path to inventory filetargethost is the name of the host in the hosts file-i hostsInventoryInventory is the Ansible way to track all the systems in your infrastructure. Here is a simple staticinventory file containing a single system and the login credentials for Ansible.[targethost]192.168.1.1 ansible user mrtuovinen ansible ssh pass PassW0rdWrite these lines for example to hosts file and pass the file to ansible or ansible-playbook commandwith -i/--inventory-file flag.See static inventory and dynamic inventory for more details.Provisioning remote machines with AnsibleWe can provision remote systems with Ansible. You should have an SSH key-pair and you shouldtake your SSH public key to the machine /.ssh/authorized keys file. The porpuse is you can loginwithout any authorization.Prerequisites: AnsibleYou need an Inventory file (for ex.: development.ini) where you determine the host what you wantto use:[MACHINE NAME]MACHINE NAME hostname MACHINE NAME ansible ssh host IP ADDRESS ansible port SSH PORTansible connection ssh ansible user USER ansible ssh extra args "-o StrictHostKeyChecking no o UserKnownHostsFile /dev/null" hostname - the hostname of the remote machineansible ssh host - the ip or domain of the remote hostansible port - the port of the remote host which is usually 22ansible connection - the connection where we set, we want to connect with sshansible user - the ssh useransible ssh extra args - extra argumentums what you want to specify for the sshhttps://riptutorial.com/3

connectionRequired extra args for ssh: StrictHostKeyChecking - It can ask a key checking what waiting for a yes or no. The Ansiblecan't answer this question then throw an error, the host not available. UserKnownHostsFile - Needed for StrictHostKeyChecking option.If you have this inventory file you can write a test playbook.yml:--- hosts: MACHINE NAMEtasks:- name: Say hellodebug:msg: 'Hello, World'then you can start the provision:ansible-playbook -i development.ini playbook.ymlansible.cfgThis is the default ansible.cfg from Ansible github.# config file for ansible -- http://ansible.com/# #####nearly all parameters can be overridden in ansible-playbookor with command line flags. ansible will read ANSIBLE CONFIG,ansible.cfg in the current working directory, .ansible.cfg inthe home directory or /etc/ansible/ansible.cfg, whichever itfinds first[defaults]# some basic default values.#inventory /etc/ansible/hosts#library /usr/share/my modules/#remote tmp HOME/.ansible/tmp#local tmp HOME/.ansible/tmp#forks 5#poll interval 15#sudo user root#ask sudo pass True#ask pass True#transport smart#remote port 22#module lang C#module set locale False# plays will gather facts by default, which contain information about# the remote system.#https://riptutorial.com/4

# smart - gather by default, but don't regather if already gathered# implicit - gather by default, turn off with gather facts: False# explicit - do not gather by default, must say gather facts: True#gathering implicit# by default retrieve all facts subsets# all - gather all subsets# network - gather min and network facts# hardware - gather hardware facts (longest facts to retrieve)# virtual - gather min and virtual facts# facter - import facts from facter# ohai - import facts from ohai# You can combine them using comma (ex: network,virtual)# You can negate them using ! (ex: !hardware,!facter,!ohai)# A minimal set of facts is always gathered.#gather subset all######some hardware related facts are collectedwith a maximum timeout of 10 seconds. Thisoption lets you increase or decrease thattimeout to something more suitable for theenvironment.gather timeout 10# additional paths to search for roles in, colon separated#roles path /etc/ansible/roles# uncomment this to disable SSH key host checking#host key checking False# change the default callback#stdout callback skippy# enable additional callbacks#callback whitelist timer, mail# Determine whether includes in tasks and handlers are "static" by# default. As of 2.0, includes are dynamic by default. Setting these# values to True will make includes behave more like they did in the# 1.x versions.#task includes static True#handler includes static True# change this for alternative sudo implementations#sudo exe sudo# What flags to pass to sudo# WARNING: leaving out the defaults might create unexpected behaviours#sudo flags -H -S -n# SSH timeout#timeout 10# default user to use for playbooks if user is not specified# (/usr/bin/ansible will use current user as default)#remote user root# logging is off by default unless this path is defined# if so defined, consider logrotate#log path /var/log/ansible.log# default module name for /usr/bin/ansiblehttps://riptutorial.com/5

#module name command# use this shell for commands executed under sudo# you may need to change this to bin/bash in rare instances# if sudo is constrained#executable /bin/sh# if inventory variables overlap, does the higher precedence one win# or are hash values merged together? The default is 'replace' but# this can also be set to 'merge'.#hash behaviour replace# by default, variables from roles will be visible in the global variable# scope. To prevent this, the following option can be enabled, and only# tasks and handlers within the role will see the variables there#private role vars yes# list any Jinja2 extensions to enable here:#jinja2 extensions jinja2.ext.do,jinja2.ext.i18n# if set, always use this private key file for authentication, same as# if passing --private-key to ansible or ansible-playbook#private key file /path/to/file# If set, configures the path to the Vault password file as an alternative to# specifying --vault-password-file on the command line.#vault password file /path/to/vault password file# format of string {{ ansible managed }} available within Jinja2# templates indicates to users editing templates files will be replaced.# replacing {file}, {host} and {uid} and strftime codes with proper values.#ansible managed Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host}# This short version is better used in templates as it won't flag the file as changed everyrun.#ansible managed Ansible managed: {file} on {host}# by default, ansible-playbook will display "Skipping [host]" if it determines a task# should not be run on a host. Set this to "False" if you don't want to see these "Skipping"# messages. NOTE: the task header will still be shown regardless of whether or not the# task is skipped.#display skipped hosts True# by default, if a task in a playbook does not include a name: field then# ansible-playbook will construct a header that includes the task's action but# not the task's args. This is a security feature because ansible cannot know# if the *module* considers an argument to be no log at the time that the# header is printed. If your environment doesn't have a problem securing# stdout from ansible-playbook (or you have manually specified no log in your# playbook on all of the tasks where you have secret information) then you can# safely set this to True to get more informative messages.#display args to stdout False# by default (as of 1.3), Ansible will raise errors when attempting to dereference# Jinja2 variables that are not set in templates or action lines. Uncomment this line# to revert the behavior to pre-1.3.#error on undefined vars False####by default (as of 1.6), Ansible may display warnings based on the configuration of thesystem running ansible itself. This may include warnings about 3rd party packages orother conditions that should be resolved if possible.to disable these warnings, set the following value to False:https://riptutorial.com/6

#system warnings True# by default (as of 1.4), Ansible may display deprecation warnings for language# features that should no longer be used and will be removed in future versions.# to disable these warnings, set the following value to False:#deprecation warnings True#######(as of 1.8), Ansible can optionally warn when usage of the shell andcommand module appear to be simplified by using a default Ansible moduleinstead. These warnings can be silenced by adjusting the followingsetting or adding warn yes or warn no to the end of the command lineparameter string. This will for example suggest using the git moduleinstead of shelling out to the git command.command warnings False# set plugin path directories here, separate with colons#action plugins /usr/share/ansible/plugins/action#cache plugins /usr/share/ansible/plugins/cache#callback plugins /usr/share/ansible/plugins/callback#connection plugins /usr/share/ansible/plugins/connection#lookup plugins /usr/share/ansible/plugins/lookup#inventory plugins /usr/share/ansible/plugins/inventory#vars plugins /usr/share/ansible/plugins/vars#filter plugins /usr/share/ansible/plugins/filter#test plugins /usr/share/ansible/plugins/test#strategy plugins /usr/share/ansible/plugins/strategy# by default callbacks are not loaded for /bin/ansible, enable this if you# want, for example, a notification or logging callback to also apply to# /bin/ansible runs#bin ansible callbacks False# don't like cows? that's unfortunate.# set to 1 if you don't want cowsay support or export ANSIBLE NOCOWS 1#nocows 1# set which cowsay stencil you'd like to use by default. When set to 'random',# a random stencil will be selected for each task. The selection will be filtered# against the cow whitelist option below.#cow selection default#cow selection random# when using the 'random' option for cowsay, stencils will be restricted to this list.# it should be formatted as a comma-separated list with no spaces between names.# NOTE: line continuations here are for formatting purposes only, as the INI parser#in python does not support them.#cow whitelist tle,tux,udder,vader-koala,vader,www# don't like colors either?# set to 1 if you don't want colors, or export ANSIBLE NOCOLOR 1#nocolor 1####if set to a persistent type (not 'memory', for example 'redis') fact valuesfrom previous runs in Ansible will be stored. This may be useful whenwanting to use, for example, IP information from one group of serverswithout having to talk to them in the same playbook run to get theirhttps://riptutorial.com/7

# current IP information.#fact caching memory####retry filesWhen a playbook fails by default a .retry file will be created in /You can disable this feature by setting retry files enabled to Falseand you can change the location of the files by setting retry files save path#retry files enabled False#retry files save path /.ansible-retry# squash actions# Ansible can optimise actions that call modules with list parameters# when looping. Instead of calling the module once per with item, the# module is called once with all items at once. Currently this only works# under limited circumstances, and only with parameters named 'name'.#squash actions apk,apt,dnf,package,pacman,pkgng,yum,zypper# prevents logging of task data, off by default#no log False# prevents logging of tasks, but only on the targets, data is still logged on themaster/controller#no target syslog False# controls whether Ansible will raise an error or warning if a task has no# choice but to create world readable temporary files to execute a module on# the remote machine. This option is False by default for security. Users may# turn this on to have behaviour more like Ansible prior to 2.1.x. See# ing-an-unprivileged-user# for more secure ways to fix this than enabling this option.#allow world readable tmpfiles False# controls the compression level of variables sent to# worker processes. At the default of 0, no compression# is used. This value must be an integer from 0 to 9.#var compression level 9# controls what compression method is used for new-style ansible modules when# they are sent to the remote system. The compression types depend on having# support compiled into both the controller's python and the client's python.# The names should match with the python Zipfile compression types:# * ZIP STORED (no compression. available everywhere)# * ZIP DEFLATED (uses zlib, the default)# These values may be set per host via the ansible module compression inventory# variable#module compression 'ZIP DEFLATED'# This controls the cutoff point (in bytes) on --diff for files# set to 0 for unlimited (RAM may suffer!).#max diff size 1048576[privilege escalation]#become True#become method sudo#become user root#become ask pass False[paramiko connection]https://riptutorial.com/8

# uncomment this line to cause the paramiko connection plugin to not record new host# keys encountered. Increases performance on new host additions. Setting works independentlyof the# host key checking setting above.#record host keys False# by default, Ansible requests a pseudo-terminal for commands executed under sudo. Uncommentthis# line to disable this behaviour.#pty False[ssh connection]# ssh arguments to use# Leaving off ControlPersist will result in poor performance, so use# paramiko on older platforms rather than removing it, -C controls compression use#ssh args -C -o ControlMaster auto -o ControlPersist 60s# The path to use for the ControlPath sockets. This defaults to# "%(directory)s/ansible-ssh-%%h-%%p-%%r", however on some systems with# very long hostnames or very long path names (caused by long user names or# deeply nested home directories) this can exceed the character limit on# file socket names (108 characters for most platforms). In that case, you# may wish to shorten the string below.## Example:# control path %(directory)s/%%h-%%r#control path %(directory)s/ansible-ssh-%%h-%%p-%%r# Enabling pipelining reduces the number of SSH operations required to# execute a module on the remote server. This can result in a significant# performance improvement when enabled, however when using "sudo:" you must# first disable 'requiretty' in /etc/sudoers## By default, this option is disabled to preserve compatibility with# sudoers configurations that have requiretty (the default on many distros).##pipelining False

inventory file containing a single system and the login credentials for Ansible. [targethost] 192.168.1.1 ansible_user mrtuovinen ansible_ssh_pass PassW0rd Write these lines for example to hosts file and pass the file to ansible or ansible-playbook command with -i/--inventory-file flag. See static inventory and dynamic inventory for more details.

Related Documents:

Ansible Tower User Guide, Release Ansible Tower 2.4.5 Thank you for your interest in Ansible Tower by Red Hat. Ansible Tower is a commercial offering that helps teams manage complex multi-tier deployments by adding control, knowledge, and delegation to Ansible-powered environ-ments.

11 am - Bernie O'Malley, RIP Kevin O'Brien, RIP 5 pm - Gary Gilliland, RIP Mon. April 19th - 9 am - John Blair, Jr., RIP Tues. April 20th - 9 am - Michael & Gwen LaHair, RIP Wed. April 21st - 9 am - Anthony Dunn Thurs. April 22nd - 9 am - David Acevedo, RIP Fri. April 23rd - 9 am - Edmund Kelly, RIP Sat. April 24th - 9 am - Louis White, RIP

Rip Van Winkle! Rip Van Winkle! NARRATOR: Rip looked all around but could see no one. RIP: Did you hear that, boy? STRANGER: (distantly yelling) Rip Van Winkle! Rip Van Winkle! WOLF: Grrrr. NARRATOR: Wolf bristled up his back, looking down the valley. Then Rip saw a strange figure slowly toiling up the side of

Red Hat Ansible Engine provides a core command line execution environment for Ansible modules, playbooks and roles. Red Hat Ansible Engine ships with a library of tested and supported Ansible modules for a range of use cases including network, compute and cloud. Red Hat Ansible Tower is the centerpiece of the Red Hat

What is Ansible? It's a simple automation language that can perfectly describe an IT application infrastructure in Ansible Playbooks. It's an automation engine that runs Ansible Playbooks. Ansible Tower is an enterprise framework for controlling, securing and managing your Ansible automation with a UI and RESTful API.

Exastro-ITA_User instruction manual_Ansible-driver 5 / 110 1 Overview of Ansible driver This chapter explains Ansible, AnsibleTower, and Ansible driver. 1.1 About Ansible Ansible is a platform construction automation tool that makes deploying applications / systems to many construction management targets easy.

Ansible Engine vs Tower vs AWX 15 Ansible Engine Ansible Tower Ansible AWX CLI Only. Not centralized management. Integration with Red Hat Enterprise Linux. Support for Ansible core modules per product life cycle. Support for the Ansible execution engine. A GUI Dashboard. Red Hat licensed and 24x7 supported.

ansible-playbook Run playbooks against targeted hosts. ansible-vault Encrypt sensitive data into an encrypted YAML file. ansible-pull Reverses the normal “push” model and lets clients "pull" from a centralized server for execution. ansible-docs Parses the docstringsof Ansible modules