feat: initial bootstrap manifests for argocd and gitea
This commit is contained in:
24
infrastructure/traefik/application.yaml
Normal file
24
infrastructure/traefik/application.yaml
Normal file
@@ -0,0 +1,24 @@
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: traefik
|
||||
namespace: argocd
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-wave: "2" # Läuft nach der Grund-Infra
|
||||
spec:
|
||||
project: default
|
||||
source:
|
||||
repoURL: https://helm.traefik.io/traefik
|
||||
targetRevision: 31.0.0 # Hier ggf. die aktuellste Chart-Version prüfen
|
||||
chart: traefik
|
||||
helm:
|
||||
valueFiles:
|
||||
# Hier zeigen wir auf die values.yaml im gleichen Ordner
|
||||
- values.yaml
|
||||
destination:
|
||||
server: 'https://kubernetes.default.svc'
|
||||
namespace: traefik # WICHTIG: Erstelle den Namespace manuell oder via Argo
|
||||
syncPolicy:
|
||||
automated:
|
||||
prune: true
|
||||
selfHeal: true
|
||||
Reference in New Issue
Block a user