Category

DevOps Tools, CI/CD and Automation Guides

Master DevOps with tutorials on CI/CD pipelines, Kubernetes, Docker, Git, and automation tools used in modern infrastructure.

The DevOps section focuses on automation, CI/CD pipelines, and modern infrastructure management tools.

DevOps combines development and operations to improve software delivery and system reliability. This category includes tutorials on tools like Docker, Kubernetes, Git, and CI/CD workflows.

To strengthen your foundation, also explore Linux and Programming.

Topics covered

  • CI/CD pipelines and automation
  • Containerization using Docker
  • Kubernetes orchestration
  • Infrastructure as code

Who should read this

  • DevOps engineers
  • Developers working with CI/CD
  • Cloud engineers

302 articles

Azure ARM Templates Explained with Examples

Azure ARM templates are an Infrastructure as Code (IaC) methodology of deploying resources in the Azure cloud. They use declarative JSON to define resources and …

By sahilhulage · 10 min read · devops

Git rebase explained in detail with examples

git rebase is used to integrate changes from one branch into another. rebase takes a series of commits (normally a branch) and replays them on top of another …

By admin · 12 min read · devops

Machine Learning in Video Games

machine learning has discovered computer video games as an interesting and rewarding area. Also, the video game market has become a prominent and proven global …

By admin · 13 min read · devops

How to add label to running pod in Kubernetes

There are two methods to add label to running pod in Kubernetes. Using kubectl label pods or kubectl edit command to edit a resource object.

By admin · 6 min read · devops

Kubernetes sidecar container examples

In the Kubernetes space, the container providing helper functionality is called a sidecar container. It lives alongside the main application container within …

By admin · 4 min read · devops