Librería Portfolio Librería Portfolio

Búsqueda avanzada

TIENE EN SU CESTA DE LA COMPRA

0 productos

en total 0,00 €

ANSIBLE: UP AND RUNNING. AUTOMATING CONFIGURATION MANAGEMENT AND DEPLOYMENT THE EASY WAY
Título:
ANSIBLE: UP AND RUNNING. AUTOMATING CONFIGURATION MANAGEMENT AND DEPLOYMENT THE EASY WAY
Subtítulo:
Autor:
HOCHSTEIN, L
Editorial:
O´REILLY
Año de edición:
2014
Materia
REDES DE ORDENADORES
ISBN:
978-1-4919-1532-5
Páginas:
334
38,50 €

 

Sinopsis

Among the many configuration management tools available, Ansible has some distinct advantages-it's minimal in nature, you don't need to install anything on your nodes, and it has an easy learning curve. This practical guide shows you how to be productive with this tool quickly, whether you're a developer deploying code to production or a system administrator looking for a better automation solution.

Author Lorin Hochstein shows you how to write playbooks (Ansible's configuration management scripts), manage remote servers, and explore the tool's real power: built-in declarative modules. You'll discover that Ansible has the functionality you need and the simplicity you desire.

Understand how Ansible differs from other configuration management systems
Use the YAML file format to write your own playbooks
Learn Ansible's support for variables and facts
Work with a complete example to deploy a non-trivial application
Use roles to simplify and reuse playbooks
Make playbooks run faster with ssh multiplexing, pipelining, and parallelism
Deploy applications to Amazon EC2 and other cloud platforms
Use Ansible to create Docker images and deploy Docker containers



Chapter 1 Introduction
A note about versions
Ansible, what is it good for?
How Ansible works
What's so great about Ansible
Is Ansible too simple?
What do I need to know?
What isn't covered
Installing Ansible
Setting up a server for testing
Moving forward
Chapter 2 Playbooks, a beginning
Some preliminaries
A very simple playbook
Running the playbook
Playbooks are YAML
Anatomy of a playbook
Did anything change? Tracking host state
Getting fancier: SSL support
Chapter 3 Inventory: describing your servers
The inventory file
Preliminaries: multiple Vagrant VMs
Behavioral inventory parameters
Groups and groups and groups
Hosts and group variables, inside the inventory
Host and group variables, in their own files
Adding entries at runtime with add_host and group_by
Dynamic inventory
Breaking out the inventory into multiple files