Convention: only the root app-of-apps (bootstrap) auto-syncs so it picks up new/changed child Application definitions from Git. Every leaf service app (metallb, metallb-config, envoy-gateway, envoy-gateway-config, nfs-provisioner) now requires an explicit manual Sync — matches the existing argocd (self-manage) and ignis convention.
33 lines
905 B
YAML
33 lines
905 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: metallb
|
|
namespace: argocd
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "0"
|
|
spec:
|
|
project: default
|
|
sources:
|
|
- repoURL: https://metallb.github.io/metallb
|
|
chart: metallb
|
|
targetRevision: "0.14.9"
|
|
helm:
|
|
valueFiles:
|
|
- $values/manifests/metallb/values.yaml
|
|
- repoURL: https://gitea.fireflylab.cc/duynguyen/cluster-bootstrap.git
|
|
targetRevision: main
|
|
ref: values
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: metallb-system
|
|
# Leaf app — manual sync only; root `bootstrap` app-of-apps stays automated.
|
|
syncPolicy:
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
ignoreDifferences:
|
|
- group: apiextensions.k8s.io
|
|
kind: CustomResourceDefinition
|
|
jsonPointers:
|
|
- /status
|
|
- /spec/conversion/webhook/clientConfig/caBundle
|