From 64e65417a9d379b6e5ad1e04e0379e3ded52ed8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillaume=20Cl=C3=A9roux?= <73357644+gcleroux@users.noreply.github.com> Date: Mon, 20 Jan 2025 21:40:28 -0500 Subject: [PATCH] remove debugging log messages --- charts/k8s-gateway/Chart.yaml | 4 ++-- charts/k8s-gateway/values.yaml | 2 +- kubernetes.go | 2 -- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/charts/k8s-gateway/Chart.yaml b/charts/k8s-gateway/Chart.yaml index ca632bb..87eb332 100644 --- a/charts/k8s-gateway/Chart.yaml +++ b/charts/k8s-gateway/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: k8s-gateway description: A fork of the k8s_gateway CoreDNS plugin to allow TXT records type: application -version: 3.1.0 -appVersion: 0.6.0 +version: 3.1.1 +appVersion: 0.6.1 maintainers: - email: guillaume@pinax.network name: Guillaume diff --git a/charts/k8s-gateway/values.yaml b/charts/k8s-gateway/values.yaml index 780e0c8..2345cd1 100644 --- a/charts/k8s-gateway/values.yaml +++ b/charts/k8s-gateway/values.yaml @@ -1,7 +1,7 @@ image: registry: ghcr.io repository: pinax-network/k8s_gateway - tag: v0.6.0 + tag: v0.6.1 pullPolicy: IfNotPresent # Delegated domain diff --git a/kubernetes.go b/kubernetes.go index 0cfc822..b8d3f77 100644 --- a/kubernetes.go +++ b/kubernetes.go @@ -744,7 +744,6 @@ func lookupIngressIndex(ctrl cache.SharedIndexInformer) func([]string) []interfa obj, _ := ctrl.GetIndexer().ByIndex(ingressHostnameIndex, key) objs = append(objs, obj...) - log.Debugf("No exact matches found for %s, looking for wildcard ingress host", key) for len(objs) == 0 { _, after, found := strings.Cut(key, ".") if !found { @@ -752,7 +751,6 @@ func lookupIngressIndex(ctrl cache.SharedIndexInformer) func([]string) []interfa break } key = after - log.Debugf("Looking for *.%s", key) obj, _ := ctrl.GetIndexer().ByIndex(ingressHostnameIndex, "*."+key) objs = append(objs, obj...) }