1 — Helm
Purpose
[stub: helm]
Metadata
| Author | Amit Singh |
| Scope | kubernetes |
Local graph
Linked from 2 notes
CI/CD Platform Engineering
A book-shaped table of contents for CI/CD platform engineering: pipeline foundations, build/artifact/delivery platforms, GitHub Actions end to end (workflow mechanics through enterprise governance), Argo Workflows, Tekton, Jenkins, release engineering, platform security, observability, reliability, enterprise governance, and MAANG interview preparation — cross-linking existing tech/kubernetes/platform-engineering-fundamentals/system-design notes instead of duplicating them.
Kubernetes
A book-shaped table of contents for Kubernetes: cloud-native foundations, the CKAD/CKA/CKS certification tracks, control-plane internals, platform tooling, multi-cluster architecture, and MAANG-level system design and interview prep — cross-linking the existing Prometheus, Observability, and Platform Engineering chapters instead of duplicating them.
Related notes
3 — Argo CD
Argo CD's pull-based reconciliation means the cluster fetches its own desired state from Git, so a compromised CI pipeline never gets a credential that can write to the cluster.
4 — Flux
Flux splits GitOps into composable controllers — source, kustomize, and notification — so drift detection and reconciliation are independent concerns instead of one monolithic sync job.
2 — Kustomize
Kustomize edits valid YAML with strategic-merge patches instead of templating it, so every intermediate step stays parseable and diffable.
5 — Operator Framework
The Operator Framework's real value isn't wrapping CRUD around a CRD — it's encoding an SRE's operational runbook into a reconcile loop so failure recovery happens without a human paging in.