How did I survive 15 years in the IT industry?
Recently, one of my good friend asked me privately how did I survive 15 years in the IT industry. So I thought to give my learnings and advice for young engineers. Who am I I started my IT career at the…
DevOps Glossary A-Z
Foggy on DevOps and Cloud jargon? In this article, I have covered 70+ DevOps and Cloud computing IT glossary from A to Z. It has definitions for most popular DevOps/cloud computing terms and acronyms. A Availability Zones Availability Zones are unique data…
Kubernetes Architecture Diagram Explained
Summary: Kubernetes is an open-source version of Borg. It is a container orchestration platform that automates the deployment, scaling, management, and networking of containers. It has been open-sourced since 2014 and primarily developed by Google using the Go Programming Language. Many…
SED command for beginners
1. Introduction Sed is a stream editor that processes content one line at a time. It can perform lot’s of operations over a file like find and replace, insertion or deletion in a linux/unix environment. In this article you will learn…
Python Unit Testing With PyTest 101
Unit Testing is the practice of writing a series of small unit test cases and validating the behavior of production code at the level of functions & classes in isolation. In simpler terms, every line of code written in development will…
Docker content trust 101
What is Docker Content Trust (DCT)? It basically allows the user to verify the integrity of the image and image provider before you pull or run them on your system. Meaning, It prevents a user from using a container image from…
List of useful docker commands
This is a selective list of useful Docker commands that’ll help in your day to day job. Docker is built around two concepts; Image and container. A Docker image is a compiled version of a docker file that is built up from…
Distroless Images 101?
Distroless images 101: What is it, why it is important?: Distroless is a Docker image that is published by Google, it basically allows you to eliminate the OS in the containers to the bare minimum application that needs to run. Basically,…