diff --git a/pkg/tls/tls.go b/pkg/tls/tls.go index a678a6690e..51b505a533 100644 --- a/pkg/tls/tls.go +++ b/pkg/tls/tls.go @@ -129,19 +129,11 @@ func GenerateCertPem(caCert *KeyPair, props CertificateProps, serverIP string, c dnsNames[2] = commonName var ips []net.IP - apiServerIP := net.ParseIP(props.APIServerHost) - if apiServerIP != nil { - ips = append(ips, apiServerIP) - } else { - dnsNames = append(dnsNames, props.APIServerHost) - } - if serverIP != "" { if strings.Contains(serverIP, ":") { host, _, _ := net.SplitHostPort(serverIP) serverIP = host } - ip := net.ParseIP(serverIP) ips = append(ips, ip) }