Files
cluster-bootstrap/bootstrap/apps/envoy-gateway.yaml
T
duynguyen ca028013ce chore: manual sync for leaf apps, keep root app-of-apps automated
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.
2026-09-02 16:22:15 +07:00

28 lines
757 B
YAML

apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: envoy-gateway
namespace: argocd
annotations:
argocd.argoproj.io/sync-wave: "2"
spec:
project: default
sources:
- repoURL: docker.io/envoyproxy
chart: gateway-helm
targetRevision: "v1.7.1"
helm:
valueFiles:
- $values/manifests/envoy-gateway/values.yaml
- repoURL: https://gitea.fireflylab.cc/duynguyen/cluster-bootstrap.git
targetRevision: main
ref: values
destination:
server: https://kubernetes.default.svc
namespace: envoy-gateway-system
# Leaf app — manual sync only; root `bootstrap` app-of-apps stays automated.
syncPolicy:
syncOptions:
- CreateNamespace=true
- ServerSideApply=true