id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
id
title
category
status
canonical_id
aliases
duplicate_of
source_trust_level
confidence_score
verification_status
tags
raw_sources
last_reinforced
github_commit
tech_stack
wiki-20260508-ci-cd-pipeline-redir
CI/CD Pipeline
10_Wiki/Topics
verified
self
CI/CD
CI CD Pipeline
파이프라인
Continuous Delivery
none
A
0.92
applied
cicd
devops
automation
deployment
2026-05-10
pending
language
framework
yaml
GitHub Actions, GitLab CI, ArgoCD
CI/CD Pipeline
매 한 줄
"매 commit 의 production 의 automated path" . 매 Continuous Integration (build+test on every push) + Continuous Delivery/Deployment (artifact → staging → prod 의 자동) 의 결합 — 매 2026 의 GitHub Actions 의 dominant 의 + GitLab CI / Jenkins / CircleCI / ArgoCD (GitOps) 의 ecosystem. 매 trunk-based dev + feature flag 의 pair.
매 핵심
매 Stages
Source : trigger (push, PR, schedule, manual).
Build : compile, package (Docker image, JAR, npm).
Test : unit → integration → e2e → security scan.
Artifact : registry push (ECR, GHCR, Artifactory).
Deploy : staging → smoke test → prod (canary / blue-green / rolling).
Observe : metrics, alerts, rollback trigger.
매 CI vs CD
CI : 매 main branch 의 always-green — fast feedback (<10 min).
CD (delivery) : 매 always-deployable artifact — manual prod gate.
CD (deployment) : 매 fully automated — canary + auto-rollback.
매 응용
SaaS web app: GitHub Actions → Docker → ECS/K8s.
Mobile: Fastlane + TestFlight/Play Console.
Library: tag → npm/PyPI/Maven publish.
Infrastructure: Terraform plan/apply via CI.
💻 패턴
GitHub Actions (Node + Docker)
GitLab CI (matrix + cache)
ArgoCD (GitOps)
Canary deploy (Argo Rollouts)
매 결정 기준
상황
Approach
GitHub-hosted repo
GitHub Actions
Self-hosted, full DevOps suite
GitLab CI
Java-heavy enterprise
Jenkins
K8s native, declarative
ArgoCD / Flux
Mobile
Fastlane + Bitrise
Monorepo
Nx Cloud / Turborepo Remote Cache
기본값 : GitHub Actions + Docker + ArgoCD (cloud-native) or ECS/Cloud Run (PaaS).
🔗 Graph
부모: DevOps · Software Delivery
변형: Continuous Integration (CI) · Continuous Delivery · GitOps
응용: Blue-Green Deployment · Canary Deployment · Feature Flag
Adjacent: Docker · Kubernetes · Terraform · TeamCity
🤖 LLM 활용
언제 : 매 workflow YAML 의 generation, matrix 의 expansion, action 의 lookup.
언제 X : 매 production 의 deploy script — 매 review + canary + rollback 의 always.
❌ 안티패턴
No rollback path : 매 deploy 의 forward-only — 매 disaster.
Secrets in YAML : 매 GitHub Secrets / OIDC 의 사용.
Slow CI (>15 min): 매 dev 의 PR 의 stack — 매 cache + parallelize.
Deploy on every push : 매 manual gate or canary 의 사용 — 매 prod 의 break.
No artifact pinning (:latest): 매 reproducibility 의 lose.
🧪 검증 / 중복
Verified (GitHub Actions docs, GitLab CI docs, ArgoCD docs).
신뢰도 A.
🕓 Changelog
날짜
변경
2026-05-08
Phase 1
2026-05-10
Manual cleanup — full CI/CD treatment with Actions/ArgoCD examples