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

Beginners guide on Kubernetes volumes with examples

Kubernetes volume lives with a Pod across a container life cycle. After a container is restarted, the new container can see all the files that were written to …

By admin · 13 min read · devops

How to use Kubernetes init containers with examples

A Kubernetes init container is an additional container in a Pod that completes a task before the "regular" container is started. The regular container will only …

By admin · 4 min read · devops

Beginners guide on Kubernetes Pods with examples

Kubernetes Pods are the smallest deployable units of computing that you can create and manage in Kubernetes. It is a co-located group of containers and …

By admin · 15 min read · devops

Detailed overview on Kubernetes API Server

In Kubernetes, all communications and operations between the control plane components and external clients, such as kubectl, are translated into RESTful API …

By admin · 12 min read · devops

Detailed tutorial on Kubernetes cron job scheduler

Kubernetes cron job scheduler can be used to control the a Job resource according to the Job template configured in the CronJob object. When the Job resource is …

By admin · 6 min read · devops