Book Image

Hands-On Enterprise Automation on Linux

By : James Freeman
Book Image

Hands-On Enterprise Automation on Linux

By: James Freeman

Overview of this book

Automation is paramount if you want to run Linux in your enterprise effectively. It helps you minimize costs by reducing manual operations, ensuring compliance across data centers, and accelerating deployments for your cloud infrastructures. Complete with detailed explanations, practical examples, and self-assessment questions, this book will teach you how to manage your Linux estate and leverage Ansible to achieve effective levels of automation. You'll learn important concepts on standard operating environments that lend themselves to automation, and then build on this knowledge by applying Ansible to achieve standardization throughout your Linux environments. By the end of this Linux automation book, you'll be able to build, deploy, and manage an entire estate of Linux servers with higher reliability and lower overheads than ever before.
Table of Contents (23 chapters)
1
Section 1: Core Concepts
5
Section 2: Standardizing Your Linux Servers
10
Section 3: Day-to-Day Management
16
Section 4: Securing Your Linux Servers

Performing unattended builds

The ultimate goal of this process is to have a server boot over the network and configure itself completely, rather than having to have someone interact with it. Although this is not a process controlled by Ansible, it is still a vital component in our Standard Operating Environment (SOE) architecture to ensure consistency of builds, and that build standards can be well documented and version controlled.

Fortunately, both CentOS (Red Hat-based) and Ubuntu (Debian-based) installers provide the capability for unattended installs to be completed in a programmatic manner. Sadly, there is no common standard for this process and, as you will see in this section, the language used for this process is wholly different between the two Linux types we are discussing here. Nevertheless, by covering off these two technologies, we are giving a good grounding that...