From d7fa5b95f5ae71279b880231662cd4af6ce78f03 Mon Sep 17 00:00:00 2001 From: Matthew Donoughe Date: Sat, 23 Mar 2019 16:40:18 -0400 Subject: [PATCH] also whitelist ipv6 otherwise it's blacklisted Signed-off-by: Matthew Donoughe --- pkg/issuer/acme/http/ingress.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/issuer/acme/http/ingress.go b/pkg/issuer/acme/http/ingress.go index 6a4d1c50f..5be36590d 100644 --- a/pkg/issuer/acme/http/ingress.go +++ b/pkg/issuer/acme/http/ingress.go @@ -121,7 +121,7 @@ func buildIngressResource(ch *v1alpha1.Challenge, svcName string) *extv1beta1.In podLabels := podLabels(ch) // TODO: add additional annotations to help workaround problematic ingress controller behaviours ingAnnotations := make(map[string]string) - ingAnnotations["nginx.ingress.kubernetes.io/whitelist-source-range"] = "0.0.0.0/0" + ingAnnotations["nginx.ingress.kubernetes.io/whitelist-source-range"] = "0.0.0.0/0,::/0" if ingClass != nil { ingAnnotations[util.IngressKey] = *ingClass