Two-source ArgoCD Applications (upstream chart + values from this repo), same pattern as cluster-bootstrap. Each service paired with a *-config Application for HTTPRoute/RBAC/ClusterSecretStore that must exist after the main install (separate sync wave). Chart targetRevision pins and HTTPRoute backendRef service names are best-effort - marked TODO/verify in-file since no live helm repo access this session to confirm current versions or actual rendered svc names.
29 lines
772 B
YAML
29 lines
772 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: headlamp
|
|
namespace: argocd
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "0"
|
|
spec:
|
|
project: default
|
|
sources:
|
|
- repoURL: https://kubernetes-sigs.github.io/headlamp/
|
|
chart: headlamp
|
|
targetRevision: "0.31.0" # TODO: verify latest via `helm search repo headlamp/headlamp --versions`
|
|
helm:
|
|
valueFiles:
|
|
- $values/manifests/headlamp/values.yaml
|
|
- repoURL: https://gitea.fireflylab.cc/duynguyen/cluster-platform.git
|
|
targetRevision: main
|
|
ref: values
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: headlamp
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|