From 88ac421c1910b4302c02ab4b7cc1afc122de785f Mon Sep 17 00:00:00 2001 From: Marco van Zijl Date: Sat, 8 Nov 2025 13:43:19 +0100 Subject: [PATCH] Update Traefik IP annotation and modify metrics exposure configuration; remove argocd ingress resource --- apps/traefik/values.yaml | 5 +++-- argocd-ingress.yaml | 19 ------------------- 2 files changed, 3 insertions(+), 21 deletions(-) delete mode 100644 argocd-ingress.yaml diff --git a/apps/traefik/values.yaml b/apps/traefik/values.yaml index 45ad817..81b10c8 100644 --- a/apps/traefik/values.yaml +++ b/apps/traefik/values.yaml @@ -3,7 +3,7 @@ traefik: service: type: LoadBalancer annotations: - io.cilium/lb-ipam-ips: "192.168.0.1" # Your Cilium L2 IP + io.cilium/lb-ipam-ips: "192.168.0.2" # Ports configuration ports: @@ -19,7 +19,8 @@ traefik: enabled: true metrics: port: 9100 - expose: false + expose: + default: false protocol: TCP # Enable dashboard diff --git a/argocd-ingress.yaml b/argocd-ingress.yaml deleted file mode 100644 index cbfad89..0000000 --- a/argocd-ingress.yaml +++ /dev/null @@ -1,19 +0,0 @@ -apiVersion: networking.k8s.io/v1 -kind: Ingress -metadata: - name: argocd-ingress - namespace: argocd - annotations: - traefik.ingress.kubernetes.io/router.entrypoints: websecure -spec: - rules: - - host: argocd.noxxos.nl - http: - paths: - - path: / - pathType: Prefix - backend: - service: - name: argocd-server - port: - name: http