add-ons: Install traefik API gateway

This commit is contained in:
2026-02-21 01:16:03 +05:30
parent 0f158d8f8f
commit 7feedd4bf0
3 changed files with 44 additions and 6 deletions
+40
View File
@@ -0,0 +1,40 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: traefik
namespace: argocd
spec:
project: default
source:
repoURL: https://traefik.github.io/charts
chart: traefik
targetRevision: v39.0.2
helm:
values: |
providers:
kubernetesGateway:
enabled: true
kubernetesIngress:
enabled: false
service:
type: ClusterIP
gateway:
listeners:
web:
namespacePolicy:
from: All
ports:
web:
hostPort: 80
websecure:
hostPort: 443
destination:
server: https://kubernetes.default.svc
namespace: traefik
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
- ServerSideApply=true