Kubernetes storage solution with Portworx

Originally posted on https://en.sokube.ch/post/introduction-to-portworx Introduction to Kubernetes Storage As you may already know, Kubernetes is a free and open-source container orchestration platform. It helps you manage containerized environments and provides amazing features such as self-healing, rollout, rollbacks, auto scaling and packaging ! Storage may not be your main concern if you are running stateless workloads …

Kubernetes storage solution with Portworx Read More »

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 »