Pipeline
Everything on SkillVeris tagged Pipeline — collected across the glossary, study notes, blog, and cheat sheets.
15 resources across 3 libraries
Study Notes(11)
The Middleware Pipeline
How ASP.NET Core processes every HTTP request through an ordered chain of middleware components.
Building an ETL Pipeline with Spark
A practical guide to designing extract, transform, and load stages in Spark, from schema-safe ingestion to atomic loads.
The PowerShell Pipeline
Learn how PowerShell chains cmdlets together by passing live .NET objects from one stage to the next, instead of parsing plain text like traditional shells.
Analyzers and Tokenizers
See how Elasticsearch breaks raw text into searchable terms using character filters, tokenizers, and token filters.
The Aggregation Pipeline
Learn how MongoDB's aggregation pipeline transforms documents through an ordered sequence of stages to filter, reshape, and summarize data.
CI/CD Pipelines for Containers
How to design continuous integration and delivery pipelines that build, test, scan, and deploy containerized applications to Kubernetes.
Anatomy of a CI/CD Pipeline
A CI/CD pipeline is a series of automated stages — source, build, test, package, deploy — that a code change flows through, each acting as a quality gate befor…
Declarative vs Scripted Pipelines
Compare Jenkins' two pipeline authoring styles — the structured, opinionated declarative syntax versus the fully programmable Groovy-based scripted syntax — an…
Parallelizing Pipeline Jobs
Explore techniques for running pipeline jobs concurrently — matrix builds, test splitting, and fan-out/fan-in patterns — to cut wall-clock time without sacrifi…
Pipeline Security Basics
CI/CD pipelines are a high-value attack surface with broad access to source, secrets, and production, so securing them requires trusted inputs, isolated execut…
Terraform in CI/CD Pipelines
Learn the standard stages, safety controls, and credential-handling patterns for running Terraform reliably inside a CI/CD pipeline, from plan-on-PR to gated a…
Cheat Sheets(1)
Interview Questions(3)
What is CI/CD?
CI/CD stands for Continuous Integration and Continuous Delivery/Deployment — a practice where developers merge code frequently into a shared branch (CI), trigg…
Continuous Integration vs Continuous Deployment
Continuous Integration (CI) is the practice of frequently merging code into a shared branch with each merge automatically built and tested, while Continuous De…
What is a CI/CD Pipeline?
A CI/CD pipeline is the automated sequence of stages — checkout, build, test, and deploy — that takes a code change from commit to running in an environment, w…