From 93dbda97818b8c18daa43f370721db0caa91aeaa Mon Sep 17 00:00:00 2001 From: Simon Behar Date: Thu, 1 Apr 2021 07:47:07 -0700 Subject: [PATCH] prog Signed-off-by: Simon Behar --- hack/certs/generate_certs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/certs/generate_certs.go b/hack/certs/generate_certs.go index 76863d80f499..23ed65d9c7a4 100644 --- a/hack/certs/generate_certs.go +++ b/hack/certs/generate_certs.go @@ -40,7 +40,7 @@ func main() { BasicConstraintsValid: true, } - for _, h := range []string{"localhost"} { + for _, h := range []string{"localhost", "127.0.0.1"} { if ip := net.ParseIP(h); ip != nil { template.IPAddresses = append(template.IPAddresses, ip) } else {