DevOpsLab

CoursePractical Lab assessments → Lab readiness checkpoints

Practical Lab assessments

CI pipeline checkpoint

12 min · Module 1

Order pipeline stages: checkout → lint/test → build → scan → deploy. Fail fast on tests; promote artifacts rather than rebuilding per environment.

Shell, YAML & config examples

# Typical CI/CD stage order
stages:
  - lint
  - test
  - build
  - security_scan
  - deploy_staging
  - deploy_production

# Build once, deploy many — same artifact/image tag promoted

Hands-on practice: /lab/scenarios/ci-pipeline/

Log in to track progress / take quizzes
← Kubernetes manifest checkpoint