Learning Hub
⚙️

DevOps & Infrastructure

CI/CD, deployment, containers, and cloud infrastructure.

CI/CD with GitHub Actions

Automate testing and deployment with a GitHub Actions workflow.

10 min readci-cdgithub-actions

DevOps Roadmap: From Code Change to Reliable Service

See DevOps as one feedback loop, then practise the tools in the order they become useful.

13 min readdevops-foundationslinuxdockerci-cdobservabilityroadmap

DevOps lifecycle and team responsibilities

DevOps is a feedback-oriented way of delivering and operating software, not a job title or toolchain. Product, development, security, and operations share responsibility from planning through production learning.

6 min readdevops-foundationspracticebeginner-friendly

Linux command-line survival guide

The command line becomes safer when you always know the current directory, preview targets, quote paths, read help, and prefer reversible operations. Commands compose through files, streams, pipes, and exit codes.

6 min readdevops-foundationspracticebeginner-friendly

Networking essentials: IP, DNS, ports, and firewalls

An IP address identifies a network endpoint, DNS maps names to records, ports distinguish services on a host, and firewalls allow or deny traffic by policy. Debug them layer by layer.

6 min readdevops-foundationspracticebeginner-friendly

Git workflow and branching strategies

A branching strategy controls integration risk. Most teams benefit from a protected main branch, short-lived feature branches, automated checks, small pull requests, and releases derived from known commits.

6 min readdevops-foundationspracticebeginner-friendly

Shell and YAML automation

Shell expresses executable steps; YAML usually describes configuration consumed by another tool. Reliable automation pins assumptions, quotes data, fails clearly, validates configuration, and is safe to rerun.

6 min readdevops-foundationspracticebeginner-friendly

Docker from image to running container

A container image is an immutable package of filesystem layers and metadata; a container is a running instance with a writable layer, process, network, and configured resources.

6 min readdockerpracticebeginner-friendly

Dockerfile and Compose practice project

A Dockerfile defines one reproducible image; Compose defines how multiple containers, networks, volumes, health checks, and environment values run together for a development or test stack.

6 min readdockerpracticebeginner-friendly

Kubernetes architecture, pods, deployments, and services

Kubernetes reconciles declared desired state. The control plane stores and schedules intent; nodes run Pods; Deployments manage replicated rollout; Services provide stable discovery across changing Pods.

6 min readdockerpracticebeginner-friendly

Kubernetes configuration, secrets, ingress, and RBAC

ConfigMaps hold non-secret configuration, Secrets carry sensitive values with careful handling, Ingress routes external HTTP traffic, and RBAC grants identities only the Kubernetes API actions they need.

6 min readdockerpracticebeginner-friendly

Build a CI pipeline step by step

Continuous integration gives every change the same reproducible checks before merge. A useful pipeline starts small—locked install, formatting or lint, types, tests, content validation, and build—then adds only checks that catch real risk.

6 min readci-cdpracticebeginner-friendly

Deployment strategies and safe rollback

Deployment strategy controls how a new version receives traffic and how quickly risk can be contained. Rolling, blue-green, and canary releases trade infrastructure cost, speed, observability, and blast radius.

6 min readci-cdpracticebeginner-friendly

Terraform fundamentals and modules

Terraform compares declarative configuration with recorded state and provider APIs to plan infrastructure changes. Modules package a coherent interface, but state, versioning, review, and lifecycle rules determine operational safety.

6 min readci-cdpracticebeginner-friendly

Cloud fundamentals without vendor lock-in

Cloud computing rents programmable compute, storage, networking, identity, and managed services. Vendor-neutral design begins with workload requirements and portable concepts, then accepts provider-specific features deliberately where their value exceeds switching cost.

6 min readci-cdpracticebeginner-friendly

Logs, metrics, and traces

Logs describe discrete events, metrics summarize numeric behavior over time, and traces connect work across service boundaries. Together they help answer what happened, how much, where, and for whom.

6 min readobservabilitypracticebeginner-friendly

Prometheus and Grafana starter lab

Prometheus scrapes and stores labeled time-series metrics; Grafana queries data sources and presents dashboards and alerts. A useful lab begins with a few service-level signals, not hundreds of panels.

6 min readobservabilitypracticebeginner-friendly

Alerts, service-level objectives, and incident response

An SLO states a reliability target for a user-visible service indicator; alerts should fire on meaningful risk to that objective; incident response restores service, communicates, and learns without blame.

6 min readobservabilitypracticebeginner-friendly