FEAT(repo): add config files for apps repo

- Add application.yaml for ArgoCD app-of-apps
- Add kustomization.yaml with all 8 application components
- Add renovate.json for automated updates
This commit is contained in:
2026-01-04 19:54:36 +09:00
parent 2470de07dd
commit ef3409884c
3 changed files with 72 additions and 0 deletions

33
application.yaml Normal file
View File

@@ -0,0 +1,33 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: applications
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: https://github.com/K3S-HOME/applications.git
targetRevision: main
path: .
destination:
server: https://kubernetes.default.svc
namespace: argocd
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
retry:
limit: 5
backoff:
duration: 5s
factor: 2
maxDuration: 3m
revisionHistoryLimit: 10