Devops Tools

Kubernetes ConfigMaps and Secrets

Posted on

In this blog, we will explore how we can use the the configuration data like database details using Config Maps and Secrets. Application ( Container Image) -> Deploy it on the Dev -> INT -> Prod There is no change from the application, application remains the same in all the environments. The only thing which […]

Devops Tools

Kubernetes Labels and Annotation

Posted on

Check out my Youtube video on this blog In this blog, we will explore about Kubernetes Labels and Annotation. We will explain their use cases so that we can decide whether to use labels or annotation for a particular use case. In my previous blog we have already seen different kinds of pods and their […]

Devops Tools

Kubernetes Controllers Explained with Examples

Posted on

In this blog, we will explore the concept of Kubernetes Controllers and how to use them to create replicated Deployments. We will also explore which controller should we use for a specific use case. Check out my YouTube video on this blog Prerequisite: Functional Kubernetes Cluster configured Kubernetes’ command-line tool, kubectl, which is the command-line […]

Devops Tools

GitLab branching

Posted on

Introduction This blog is  dedicated to understand the branching concept of Git As a Git user, you must be acquainted with the branching concept. Also, must be in common practice of directly merging all of your code into the master branch. But do you know merging into master directly can seize your chances of: a. […]