☰
Courses
›
DevOps Zero to Hero
›
CI/CD Pipelines
›
Video 24
Introduction to CI/CD and How It Works
📚
Theory
0/5
🧪
Lab Practice
💬
Interview Questions
0%
Contents
0 of 5 sections complete · 5 min total
01
1
What is CI/CD?
CI/CD stands for Continuous Integration and Continuous Delivery (or Deployment). It is the process of automating the delivery of a software…
Workflow
1 min read
02
How CI/CD Automates the Process
When a developer completes a feature and commits code to a Version Control System (like GitHub), a CI/CD orchestrator watches for that…
Workflow
1 min read
03
1
Legacy CI/CD: Jenkins
Jenkins is considered a legacy (though still widely used) CI/CD tool. It acts as an orchestrator, integrating various tools (like Maven for…
Workflow
1 min read
04
Modern CI/CD: GitHub Actions (and GitLab CI)
Modern open-source projects (like Kubernetes) and modern organizations use tools like GitHub Actions. Instead of maintaining static servers…
Workflow
1 min read
05
1
Environment Promotion (Dev -> Staging -> Prod)
Applications are rarely deployed directly to production. CI/CD pipelines promote code through different environments. A 'Dev' environment…
Concept
1 min read