Compare commits

...
2 Commits
Author SHA1 Message Date
whyredfire b38b87663e add-on: Use external IP setup for traefik 2026-02-21 01:27:31 +05:30
whyredfire 7feedd4bf0 add-ons: Install traefik API gateway 2026-02-21 01:16:03 +05:30
3 changed files with 41 additions and 6 deletions
+37
View File
@@ -0,0 +1,37 @@
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
externalIPs:
- 192.168.2.220
gateway:
listeners:
web:
namespacePolicy:
from: All
destination:
server: https://kubernetes.default.svc
namespace: traefik
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
- ServerSideApply=true
+4 -1
View File
@@ -2,4 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
resources: resources:
- services # add-ons
- add-ons/traefik.yaml
# services
- services/app-autoregexbot.yaml
-5
View File
@@ -1,5 +0,0 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- app-autoregexbot.yaml