mirror of
https://github.com/ghndrx/homelab-gitops.git
synced 2026-02-10 06:44:57 +00:00
- Add root ApplicationSet using Git Directory Generator - Configure AppProjects for infrastructure and apps separation - Add cert-manager with Let's Encrypt ClusterIssuers (staging/prod) - Add SOPS configuration for age-encrypted secrets - Add bootstrap documentation (docs/BOOTSTRAP.md) - Scaffold infrastructure dirs (networking, storage, monitoring) - Update README with quick start and architecture GitOps pattern: directories auto-discovered by ArgoCD ApplicationSets Reference: CNCF App-of-Apps best practices 2025
13 lines
382 B
YAML
13 lines
382 B
YAML
# clusters/defiant/argocd-namespace.yaml
|
|
# ArgoCD namespace with required labels
|
|
apiVersion: v1
|
|
kind: Namespace
|
|
metadata:
|
|
name: argocd
|
|
labels:
|
|
app.kubernetes.io/name: argocd
|
|
app.kubernetes.io/part-of: argocd
|
|
# Pod Security Standards - privileged for ArgoCD repo-server
|
|
pod-security.kubernetes.io/enforce: baseline
|
|
pod-security.kubernetes.io/warn: restricted
|