fix: move argocd to bootstrap and improve stuff

This commit is contained in:
2025-06-25 09:43:23 +02:00
parent a7b764898b
commit a1e8f957d9
326 changed files with 84 additions and 18 deletions
+35
View File
@@ -0,0 +1,35 @@
{{ if .Values.linkerd.multicluster.enabled }}
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: linkerd-multicluster
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
annotations:
# Should sync after linkerd (which is wave 0)
argocd.argoproj.io/sync-wave: "1"
spec:
destination:
namespace: linkerd-multicluster
server: 'https://kubernetes.default.svc'
source:
repoURL: 'https://helm.linkerd.io/stable'
targetRevision: {{ .Values.linkerd.multicluster.version }}
chart: linkerd-multicluster
helm:
values: |
gateway:
serviceType: "NodePort"
project: sys
syncPolicy:
managedNamespaceMetadata:
labels:
component: sys
syncOptions:
- CreateNamespace=true
- ApplyOutOfSyncOnly=true
automated:
prune: true
# selfHeal: false
{{ end }}