Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions presentations.js
Original file line number Diff line number Diff line change
Expand Up @@ -389,5 +389,13 @@ const PRESENTATIONS_CONFIG = [
keywords: ["keycloak", "iam", "identity", "access management", "sso", "oauth2", "oidc"],
category: ["security"],
difficulty: "advanced"
},
{
file: "presentations/devops-cicd.json",
title: "DevOps – CI/CD",
description: "Comprehensive introduction to Continuous Integration and Continuous Deployment pipelines, tools, and best practices",
keywords: ["devops", "ci/cd", "jenkins", "github-actions", "gitlab-ci", "argo-cd", "automation", "deployment", "pipeline"],
category: ["devops", "backend"],
difficulty: "beginner"
}
];
33 changes: 33 additions & 0 deletions presentations/devops-cicd.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"title": "DevOps – CI/CD",
"description": "An introduction to CI/CD pipelines",
"category": "devops",
"keywords": ["devops", "ci/cd", "automation"],
"presenter": {
"name": "Raj Patil",
"github": "Raj-glitch-max",
"bio": "B.Tech Student, Learning DevOps"
},
"slides": [
{
"id": 1,
"title": "DevOps – CI/CD",
"subtitle": "Continuous Integration & Deployment",
"type": "title"
},
{
"id": 2,
"title": "What is CI/CD?",
"bullets": [
"CI: Automatically test code changes",
"CD: Automatically deploy to production",
"Reduces manual errors and speeds up releases"
]
},
{
"id": 3,
"title": "Pipeline Stages",
"codeExample": "stages:\n - build\n - test\n - deploy"
}
]
}