This repository contains scripts, manifests, and diagrams that accompany the Polarpoint ArgoCD blog series:
- How I Standardised Kubernetes Deployments with ArgoCD
- Secrets & GitOps: ArgoCD + External Secrets Done Right
- GitOps as a Product: Building Self‑Service with ArgoCD
- Multi‑Cluster GitOps with ArgoCD: The Operational Blueprint
.
├── apps/ # ArgoCD Application & App-of-Apps manifests
├── charts/ # Optional Helm chart examples
├── examples/ # Practical examples referenced in posts
│ ├── app-of-apps/
│ ├── applicationsets/
│ ├── external-secrets/
│ ├── multi-cluster/
│ └── promotion/
├── manifests/ # Raw Kubernetes manifests
├── policies/ # OPA/Gatekeeper policy examples
├── scripts/ # Helper scripts (bootstrap, lint, render)
├── docs/ # Extra docs / notes
└── images/ # Social cards / diagrams
# Example: apply app-of-apps
kubectl apply -f examples/app-of-apps/root.yamlMIT