
As the controller stands today this "validation" is done once per config load, which means if the DNS query fails for any reason the endpoint will remain dead until both (1) a change happens to the ingress and (2) the DNS resolution works. If the user configured the name we should just pass it through, this way the lua dns can attempt to re-query it at its leisure.
119 lines
3.3 KiB
Go
119 lines
3.3 KiB
Go
/*
|
|
Copyright 2018 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package controller
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"reflect"
|
|
"strconv"
|
|
|
|
"k8s.io/apimachinery/pkg/util/validation"
|
|
"k8s.io/klog"
|
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
|
|
"k8s.io/ingress-nginx/internal/ingress"
|
|
"k8s.io/ingress-nginx/internal/k8s"
|
|
)
|
|
|
|
// getEndpoints returns a list of Endpoint structs for a given service/target port combination.
|
|
func getEndpoints(s *corev1.Service, port *corev1.ServicePort, proto corev1.Protocol,
|
|
getServiceEndpoints func(string) (*corev1.Endpoints, error)) []ingress.Endpoint {
|
|
|
|
upsServers := []ingress.Endpoint{}
|
|
|
|
if s == nil || port == nil {
|
|
return upsServers
|
|
}
|
|
|
|
// using a map avoids duplicated upstream servers when the service
|
|
// contains multiple port definitions sharing the same targetport
|
|
processedUpstreamServers := make(map[string]struct{})
|
|
|
|
svcKey := k8s.MetaNamespaceKey(s)
|
|
|
|
// ExternalName services
|
|
if s.Spec.Type == corev1.ServiceTypeExternalName {
|
|
klog.V(3).Infof("Ingress using Service %q of type ExternalName.", svcKey)
|
|
|
|
targetPort := port.TargetPort.IntValue()
|
|
if targetPort <= 0 {
|
|
klog.Errorf("ExternalName Service %q has an invalid port (%v)", svcKey, targetPort)
|
|
return upsServers
|
|
}
|
|
|
|
// if the externalName is not an IP address we need to validate is a valid FQDN
|
|
if net.ParseIP(s.Spec.ExternalName) == nil {
|
|
if errs := validation.IsDNS1123Subdomain(s.Spec.ExternalName); len(errs) > 0 {
|
|
klog.Errorf("Invalid DNS name %s: %v", s.Spec.ExternalName, errs)
|
|
return upsServers
|
|
}
|
|
}
|
|
|
|
return append(upsServers, ingress.Endpoint{
|
|
Address: s.Spec.ExternalName,
|
|
Port: fmt.Sprintf("%v", targetPort),
|
|
})
|
|
}
|
|
|
|
klog.V(3).Infof("Getting Endpoints for Service %q and port %v", svcKey, port.String())
|
|
ep, err := getServiceEndpoints(svcKey)
|
|
if err != nil {
|
|
klog.Warningf("Error obtaining Endpoints for Service %q: %v", svcKey, err)
|
|
return upsServers
|
|
}
|
|
|
|
for _, ss := range ep.Subsets {
|
|
for _, epPort := range ss.Ports {
|
|
|
|
if !reflect.DeepEqual(epPort.Protocol, proto) {
|
|
continue
|
|
}
|
|
|
|
var targetPort int32
|
|
|
|
if port.Name == "" {
|
|
// port.Name is optional if there is only one port
|
|
targetPort = epPort.Port
|
|
} else if port.Name == epPort.Name {
|
|
targetPort = epPort.Port
|
|
}
|
|
|
|
if targetPort <= 0 {
|
|
continue
|
|
}
|
|
|
|
for _, epAddress := range ss.Addresses {
|
|
ep := net.JoinHostPort(epAddress.IP, strconv.Itoa(int(targetPort)))
|
|
if _, exists := processedUpstreamServers[ep]; exists {
|
|
continue
|
|
}
|
|
ups := ingress.Endpoint{
|
|
Address: epAddress.IP,
|
|
Port: fmt.Sprintf("%v", targetPort),
|
|
Target: epAddress.TargetRef,
|
|
}
|
|
upsServers = append(upsServers, ups)
|
|
processedUpstreamServers[ep] = struct{}{}
|
|
}
|
|
}
|
|
}
|
|
|
|
klog.V(3).Infof("Endpoints found for Service %q: %v", svcKey, upsServers)
|
|
return upsServers
|
|
}
|