Skip to content

Latest commit

 

History

History
108 lines (83 loc) · 6.75 KB

day63.md

File metadata and controls

108 lines (83 loc) · 6.75 KB
title published description tags cover_image canonical_url id
#90DaysOfDevOps - The Big Picture: Configuration Management - Day 63
false
90DaysOfDevOps - The Big Picture Configuration Management
devops, 90daysofdevops, learning
1048711

The Big Picture: Configuration Management

Coming straight off the back of the section covering Infrastructure as Code, there is likely going to be some crossover as we talk about Configuration Management or Application Configuration Management.

Configuration Management is the process of maintaining applications, systems and servers in a desired state. The overlap with Infrastructure as code is that IaC is going to make sure your infrastructure is at the desired state but after that especially terraform is not going to look after the desired state of your OS settings or Application and that is where Configuration Management tools come in. Making sure that system and applications perform the way it is expected as changes occur over Deane.

Configuration management keeps you from making small or large changes that go undocumented.

Scenario: Why would you want to use Configuration Management

The scenario or why you'd want to use Configuration Management, meet Dean he's our system administrator and Dean is a happy camper pretty and working on all of the systems in his environement.

What happens if their system fails, if there's a fire, a server goes down well? Dean knows exactly what to do he can fix that fire really easily the problems become really difficult for Dean however if multiple servers start failing particularly when you have large and expanding environments, this is why Dean really needs to have a configuration management tool. Configuration Management tools can help make Dean look like a rockstar, all he has to do is configure the right codes that allows him to push out the instructions on how to set up each of the servers quickly effectively and at scale.

Configuration Management tools

There are a variety of configuration management tools available, and each has specific features that make it better for some situations than others.

At this stage we will take a quick fire look at the options in the above picture before making our choice on which one we will use and why.

  • Chef

    • Chef ensures configuration is applied consistently in every environment, at any scale with infrastructure automation.
    • Chef is an open-source tool developed by OpsCode written in Ruby and Erlang.
    • Chef is best suited for organisations that have a hetrogenous infrastructure and are looking for mature solutions.
    • Recipes and Cookbooks determine the configuration code for your systems.
    • Pro - A large collection of recipes are available
    • Pro - Integrates well with Git which provides a strong version control
    • Con - Steep learning curve, a considerable amount of time required.
    • Con - The main server doesn't have much control.
    • Architecture - Server / Clients
    • Ease of setup - Moderate
    • Language - Procedural - Specify how to do a task
  • Puppet

    • Puppet is a configuration management tool that supports automatic deployment.
    • Puppet is built in Ruby and uses DSL for writing manifests.
    • Puppet also works well with hetrogenous infrastructure where the focus is on scalability.
    • Pro - Large community for support.
    • Pro - Well developed reporting mechanism.
    • Con - Advance tasks require knowledge of Ruby language.
    • Con - The main server doesn't have much control.
    • Architecture - Server / Clients
    • Ease of setup - Moderate
    • Language - Declartive - Specify only what to do
  • Ansible

    • Ansible is an IT automation tool that automates configuration management, cloud provisioning, deployment and orchestration.
    • The core of Ansible playbooks are written in YAML. (Should really do a section on YAML as we have seen this a few times)
    • Ansible works well when there are environments that focus on getting things up and running fast.
    • Works on playbooks which provide instructions to your servers.
    • Pro - No agents needed on remote nodes.
    • Pro - YAML is easy to learn.
    • Con - Performance speed is often less than other tools (Faster than Dean doing it himself manually)
    • Con - YAML not as powerful as Ruby but less of a learning curve.
    • Architecture - Client Only
    • Ease of setup - Very Easy
    • Language - Procedural - Specify how to do a task
  • SaltStack

    • SaltStack is a CLI based tool that automates configuration management and remote execution.
    • SaltStack is Python based whilst the instructions are written in YAML or its own DSL.
    • Perfect for environments with scalability and resilience as the priority.
    • Pro - Easy to use when up and running
    • Pro - Good reporting mechanism
    • Con - Setup phase is tough
    • Con - New web ui which is much less developed than the others.
    • Architecture - Server / Clients
    • Ease of setup - Moderate
    • Language - Declartive - Specify only what to do

Ansible vs Terraform

The tool that we will be using for this section is going to be Ansible. (Easy to use and easier language basics required.)

I think it is important to touch on some of the differences between Ansible and Terraform before we look into the tooling a little further.

Ansible Terraform
Type Ansible is a configuration management tool Terraform is a an orchestration tool
Infrastructure Ansible provides support for mutable infrastructure Terraform provides support for immutable infrastructure
Language Ansible follows procedural language Terraform follows a declartive language
Provisioning Ansible provides partial provisioning (VM, Network, Storage) Terraform provides extensive provisioning (VM, Network, Storage)
Packaging Ansible provides complete support for packaging & templating Terraform provides partial support for packaging & templating
Lifecycle Mgmt Ansible does not have lifecycle management Terraform is heavily dependant on lifecycle and state mgmt

Resources

See you on Day 64