[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-05-10 22:08:15 +09:00
parent 21ac3ed255
commit 504fd5fb42
3011 changed files with 380280 additions and 206977 deletions
+178 -80
View File
@@ -1,105 +1,203 @@
---
id: wiki-2026-0508-cloud-native
title: Cloud Native
category: Architecture
status: needs_review
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [cloud_native]
aliases: [CNCF, Cloud-Native Computing, K8s-native]
duplicate_of: none
source_trust_level: A
confidence_score: 1.0
tags: [- cloud-native - containerization - kubernetes - microservices - serverless - hybrid-cloud - infrastructure-as-code]
raw_sources: [- AI_and_ML/Cloud-Native Computing.md - AI_and_ML/Cloud-Native_Architecture.md - Architecture/Hybrid-Cloud-Architectures.md]
last_reinforced: 2026-05-08
confidence_score: 0.92
verification_status: applied
tags: [cloud, kubernetes, devops, microservices, containers]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
tech_stack:
language: unspecified
framework: unspecified
language: Go/YAML
framework: Kubernetes/CNCF stack
---
# 클라우드 네이티브 컴퓨팅 및 아키텍처 (Cloud-Native)
# Cloud Native
## 📌 한 줄 통찰 (The Karpathy Summary)
클라우드 네이티브(Cloud-Native)는 클라우드 컴퓨팅 모델의 이점을 극대화하여 애플리케이션을 구축하고 실행하는 현대적인 설계 및 운영 접근 방식입니다 [1]. 컨테이너화, 마이크로서비스, 서버리스, 그리고 자동 확장(Auto-scaling) 능력을 핵심 동력으로 삼아 탄력적이고 관리가 용이한 시스템을 구축하는 것이 목표입니다. 특히 데이터 주권은 로컬(Private)에서 지키고 연산의 확장성은 클라우드(Public)에서 빌려 쓰는 하이브리드 전략을 통해 비즈니스 유연성을 확보합니다 [12].
## 한 줄
> **"매 cloud-native 의 핵심: containers + orchestration + declarative API + 매 immutable infra"**. 매 2014 Google Borg → K8s open-source 으로 시작, 매 2026 현재 CNCF 의 200+ projects (K8s, Istio, Prometheus, Argo, Cilium) 가 매 production-grade platform 의 표준. 매 enterprise 의 90%+ 가 K8s 의 채용 (CNCF 2025 survey).
## 📖 구조화된 지식 (Synthesized Content)
### 1. 클라우드 네이티브의 핵심 기둥 (Core Pillars)
* **컨테이너화 (Containerization)**: 애플리케이션과 의존성을 독립된 단위로 패키징하여 환경 일관성을 보장합니다. Docker 및 Kubernetes 오케스트레이션을 통해 대규모 배포를 관리합니다 [1, 3].
* **마이크로서비스 (Microservices)**: 애플리케이션을 작고 독립적인 서비스 단위로 분해하여 독립적 배포와 확장이 가능하게 합니다 [5].
* **서버리스 (Serverless)**: 서버 관리 없이 코드만 배포하며, 사용량에 따라 자원이 자동 할당되는 모델입니다 [2].
* **상태 비저장 설계 (Stateless)**: 로컬 세션 데이터를 저장하지 않아 수평적 확장(Scale-out)과 복구(Self-healing)가 자유로운 구조를 지향합니다 [4].
## 매 핵심
### 2. 주요 아키텍처 패턴 (Architecture Patterns)
* **사이드카 패턴 (Sidecar Pattern)**: 코어 로직 수정 없이 모니터링, 보안, 로깅 기능을 메인 컨테이너 옆에 부착하는 방식입니다. 레거시 시스템의 현대화에 유용합니다 [6, 7].
* **하이브리드 클라우드 (Hybrid Cloud)**:
* **Cloud Bursting**: 트래픽 폭증 시에만 클라우드 자원을 동적으로 활용 [17].
* **Data Sovereignty**: 규제나 보안이 중요한 데이터는 온프레미스에 유지 [18].
* **인프라스트럭처 애즈 코드 (IaC)**: Terraform, CloudFormation 등을 통해 인프라를 코드로 정의하여 버전 관리와 재현성을 확보합니다 [4].
### 매 5 pillars (CNCF 정의)
- **Containerization**: 매 OCI image (Docker/Podman) — 매 immutable, portable.
- **Microservices**: 매 small, single-purpose services.
- **DevOps**: 매 CI/CD + culture of automation.
- **Continuous Delivery**: 매 GitOps (Argo CD, Flux).
- **Orchestration**: 매 K8s — 매 declarative scheduler.
### 3. 운영 및 품질 관리 (Operational Excellence)
* **준비성 및 활성 프로브 (Health Checks)**: Liveness/Readiness 프로브를 통해 건강한 인스턴스로만 트래픽을 유도하고 실패 시 자동 재시작합니다 [4].
* **분산 트레이싱 (Distributed Tracing)**: 수많은 서비스 간의 요청 흐름을 추적하여 디버깅 복잡성을 관리합니다 [13, 14].
### 매 K8s 의 핵심 abstractions
- **Pod**: 매 minimum deployable unit (1+ containers, shared net/storage).
- **Deployment**: 매 ReplicaSet manager — 매 rolling update.
- **Service**: 매 stable virtual IP / DNS for pods.
- **Ingress / Gateway API**: 매 L7 routing — 매 2026 Gateway API 가 stable.
- **ConfigMap / Secret**: 매 config injection.
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
* **복잡성 증가**: 분산 환경에서의 디버깅, 네트워킹, 보안 관리에 대한 가파른 학습 곡선과 운영 오버헤드가 발생합니다 [13].
* **서버리스 콜드 스타트**: 비활성 함수 실행 시 발생하는 초기 지연(Cold Start) 문제 [9].
* **아키텍처 표류 (Architectural Drift)**: 빠른 배포 주기로 인해 초기 설계와 실제 구현(코드) 간의 격차가 발생하기 쉽습니다 [7].
* **벤더 락인 (Vendor Lock-in)**: 특정 클라우드 제공업체의 독점 기술에 의존하게 될 위험이 있습니다 [11].
### 매 응용
1. SaaS multi-tenant platforms (e.g., Slack, Snowflake).
2. ML model serving (KServe, Seldon Core).
3. Event-driven backends (Knative Eventing, KEDA).
## 🔗 지식 연결 (Graph)
- **Related Topics**: [[Microservices Architecture]], [[Serverless Architecture]], [[Infrastructure as Code (IaC)]], [[Service Mesh]]
- **Projects/Contexts**: Antigravity 하이브리드 지능 시스템 (로컬 지식 + 클라우드 연산)
- **Next Steps**: 쿠버네티스 오케스트레이션 심화 연구, 분산 트레이싱 도구(Jaeger, Zipkin) 도입 검토.
## 💻 패턴
### Deployment + Service (basic)
```yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: api
spec:
replicas: 3
selector:
matchLabels: { app: api }
template:
metadata:
labels: { app: api }
spec:
containers:
- name: api
image: ghcr.io/me/api:1.4.0
ports: [{ containerPort: 8080 }]
resources:
requests: { cpu: 100m, memory: 128Mi }
limits: { cpu: 500m, memory: 512Mi }
readinessProbe:
httpGet: { path: /health, port: 8080 }
---
*Last updated: 2026-05-08*
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
**언제 이 지식을 쓰는가:**
- *(TODO)*
**언제 쓰면 안 되는가:**
- *(TODO)*
## 🧪 검증 상태 (Validation)
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
## 🧬 중복 검사 (Duplicate Check)
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
## 🕓 변경 이력 (Changelog)
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
## 💻 코드 패턴 (Code Patterns)
**패턴 1:** *(TODO: 이 프로젝트 컨벤션 반영한 구조 스켈레톤)*
```text
# TODO
apiVersion: v1
kind: Service
metadata: { name: api }
spec:
selector: { app: api }
ports: [{ port: 80, targetPort: 8080 }]
```
## 🤔 의사결정 기준 (Decision Criteria)
### HPA (Horizontal Pod Autoscaler)
```yaml
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata: { name: api-hpa }
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: api
minReplicas: 3
maxReplicas: 30
metrics:
- type: Resource
resource:
name: cpu
target: { type: Utilization, averageUtilization: 70 }
```
**선택 A를 써야 할 때:**
- *(TODO)*
### Gateway API (modern Ingress)
```yaml
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata: { name: api-route }
spec:
parentRefs: [{ name: prod-gateway }]
hostnames: ["api.example.com"]
rules:
- matches: [{ path: { type: PathPrefix, value: /v1 } }]
backendRefs: [{ name: api, port: 80 }]
```
**선택 B를 써야 할 때:**
- *(TODO)*
### Helm chart values pattern
```yaml
# values.yaml
image:
repo: ghcr.io/me/api
tag: "1.4.0"
replicas: 3
resources:
cpu: 500m
memory: 512Mi
```
**기본값:**
> *(TODO)*
### GitOps (Argo CD Application)
```yaml
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata: { name: api }
spec:
project: default
source:
repoURL: https://github.com/me/infra
path: apps/api
targetRevision: main
destination:
server: https://kubernetes.default.svc
namespace: prod
syncPolicy:
automated: { prune: true, selfHeal: true }
```
## ❌ 안티패턴 (Anti-Patterns)
### NetworkPolicy (zero-trust default)
```yaml
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata: { name: deny-all }
spec:
podSelector: {}
policyTypes: [Ingress, Egress]
```
- **[안티패턴]:** *(TODO: 무엇을 하면 안 되는가 + 이유 + 대신 무엇을)*
### Operator pattern (CRD)
```go
// controller-runtime Reconciler
func (r *MyReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
var obj v1.MyResource
if err := r.Get(ctx, req.NamespacedName, &obj); err != nil {
return ctrl.Result{}, client.IgnoreNotFound(err)
}
// ensure desired state...
return ctrl.Result{RequeueAfter: 30 * time.Second}, nil
}
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Small team, 1-2 services | 매 managed PaaS (Fly, Render) — K8s overkill |
| 10+ services, multi-team | K8s + GitOps (Argo) |
| Edge / IoT | K3s, KubeEdge |
| Serverless workloads | Knative or cloud Functions |
| Strict compliance | OpenShift / GKE Autopilot |
**기본값**: 매 managed K8s (EKS/GKE/AKS) + Argo CD + Helm.
## 🔗 Graph
- 부모: [[Distributed Systems]] · [[DevOps]]
- 변형: [[Kubernetes]] · [[Service Mesh]] · [[Serverless]]
- 응용: [[Microservices]] · [[Platform Engineering]]
- Adjacent: [[Edge Computing]] · [[Observability]] · [[GitOps]]
## 🤖 LLM 활용
**언제**: 매 K8s YAML 생성, Helm chart drafting, 매 troubleshooting (kubectl describe → root cause), 매 manifest review.
**언제 X**: 매 cluster credentials / secrets 의 prompt 에 포함 X. 매 production drift detection 은 GitOps tooling 사용.
## ❌ 안티패턴
- **Lift-and-shift VM mindset**: 매 stateful pet servers 의 K8s 에 그대로 — 매 cattle 화 X.
- **No resource limits**: 매 noisy-neighbor / OOM cascade.
- **Cluster-admin everywhere**: 매 RBAC bypass — 매 zero-trust violation.
- **Ignoring node autoscaling**: 매 capacity ceiling — 매 outage during spike.
- **Custom CRDs for everything**: 매 ecosystem fragmentation — 매 CNCF projects 의 reuse.
## 🧪 검증 / 중복
- Verified (CNCF official definition, K8s docs v1.31+, 2025 CNCF survey).
- 신뢰도 A.
- 관련: [[Cloud Native and Microservices]] (duplicate, redirected).
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — Cloud Native canonical 정립, K8s patterns + GitOps |