Book Image

Ansible 2 Cloud Automation Cookbook

By : Aditya Patawari, Vikas Aggarwal
Book Image

Ansible 2 Cloud Automation Cookbook

By: Aditya Patawari, Vikas Aggarwal

Overview of this book

Ansible has a large collection of inbuilt modules to manage various cloud resources. The book begins with the concepts needed to safeguard your credentials and explain how you interact with cloud providers to manage resources. Each chapter begins with an introduction and prerequisites to use the right modules to manage a given cloud provider. Learn about Amazon Web Services, Google Cloud, Microsoft Azure, and other providers. Each chapter shows you how to create basic computing resources, which you can then use to deploy an application. Finally, you will be able to deploy a sample application to demonstrate various usage patterns and utilities of resources.
Table of Contents (11 chapters)

Introduction

Containers are lightweight, standalone software packages that contain all the dependencies it requires to run, such as the code itself, libraries, configurations, and so on. It allows us to run an application along with its dependencies in isolation. Containers enable the deployment of an application quickly and seamlessly, and also gives us more control over system resources. Unlike a virtual machine, which has its own kernel, containers don't need their own kernel for different containers. A container will share its kernel with its host.

Docker is one of the most popular containerization platforms, and was developed by company called Docker, Inc. Docker is a tool that can package code and its dependencies into a container, which in turn can run on multiple platforms.

As a platform, Docker has evolved from a simple containerization tool. Now it consists of...