28 lines
879 B
YAML
28 lines
879 B
YAML
# Noble cluster workloads — one Application so the Argo CD UI stays a single “platform” row
|
|
# under **noble-root** (app-of-apps). Renders **clusters/noble/apps** (Kustomize + Helm).
|
|
#
|
|
# Adopting existing manual Helm releases: release names and namespaces must match
|
|
# **clusters/noble/apps/kustomization.yaml** (same as the README install commands).
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: noble-platform
|
|
namespace: argocd
|
|
finalizers:
|
|
- resources-finalizer.argocd.argoproj.io/background
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: https://gitea.pcenicni.ca/gsdavidp/home-server.git
|
|
targetRevision: main
|
|
path: clusters/noble/apps
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: default
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|