DevOps Series : Chef Overview

Introduction Just as Puppet, Chef is an automation tool. It can save you time by automating your daily repetetive tasks. In this article I won’t explain in details again terms like imperative and declarative models or idempotency seen together in Puppet articles. But as a quick reminder, declarative languages like Chef contrast with imperative languages which specify explicit manipulation of the computer’s internal state; or procedural languages which specify an explicit sequence of steps to follow. Chef is a …

DevOps Series : Chef Overview Read More »

How to speed up Ansible playbooks drastically ?

Originally posted on : Sokube Blog Introduction Ansible is a well known open source automation engine which can automate, provision, handle configuration management and orchestration. As it doesn’t need an agent by using SSH protocol, and because you don’t need to write code using simple modules, Ansible eases the deployment and management of your applications ! Before discussing …

How to speed up Ansible playbooks drastically ? Read More »

DevOps Series : Terraform Cheatsheet

General CLI Commands Install modules, backend and plugins $ terraform init Create Plan & Dry run $ terraform plan $ terraform plan -out plan.out Execute Plan $ terraform apply $ terraform apply -auto-approve Taint resource (mark for recreation) $ terraform taint $ terraform untaint Synchronize state with remote resources $ terraform refresh Import resource $ …

DevOps Series : Terraform Cheatsheet Read More »

DevOps Series : CheckMK

Introduction An agent based monitoring tool I really like to use is CheckMK ! It’s is a software developed in Python and C++ for IT Infrastructure monitoring. It is used for the monitoring of servers, applications, networks, cloud infrastructures (public, private, hybrid), containers, storage, databases and environment sensors. It’s easy to use and you has a lot of features. Checkmk components Let’s begin by having our definitions straights : Editions comparison There …

DevOps Series : CheckMK Read More »