- Add ArgoCD Application for Helm chart deployment - Add helm-values.yaml with custom settings - Configure GOMEMLIMIT=400MiB, GOGC=50 - Disable reconciliation (webhook only) - Enable anonymous access (Authelia handles auth) - Move main ingress to helm-values.yaml - Add separate webhook-ingress.yaml - Remove ConfigMap files (now in helm-values)
9 lines
264 B
YAML
9 lines
264 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
resources:
|
|
# ArgoCD Application (self-managed via Helm chart)
|
|
- argocd.yaml
|
|
# Additional manifests (applied alongside Helm chart)
|
|
- manifests/namespace.yaml
|
|
- manifests/webhook-ingress.yaml
|