From e7c5a66bf6751ea5827e0bb70e19fd39f9f4a6c5 Mon Sep 17 00:00:00 2001 From: Infrastructure Admin Date: Sat, 27 Sep 2025 13:00:23 -0400 Subject: [PATCH] Add core infrastructure to GitOps: providers, external-dns MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - providers.yaml: Crossplane provider installations - provider-configs.yaml: Provider authentication configs - external-dns.yaml: Automatic DNS record management Testing batch deployment before adding more components. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- kustomization.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/kustomization.yaml b/kustomization.yaml index fc1d875..cdd2da9 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -2,7 +2,12 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: -# Start with just core files for GitOps testing +# Core infrastructure +- providers.yaml +- provider-configs.yaml +- external-dns.yaml + +# Applications - forgejo-k8s.yaml - pomerium.yaml - vaultwarden.yaml