mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 19:01:49 +00:00
use sets.String for tracking IPVS no local endpoint metric
This commit is contained in:
parent
f0dfac5d07
commit
ba4f5c4e7b
@ -273,16 +273,20 @@ type Proxier struct {
|
||||
// Inject for test purpose.
|
||||
networkInterfacer utilproxy.NetworkInterfacer
|
||||
gracefuldeleteManager *GracefulTerminationManager
|
||||
// serviceNoLocalEndpointsInternal is a map of services that couldn't have their rules applied
|
||||
// due to the absence of local endpoints when the internal traffic policy label set to "Local".
|
||||
// serviceNoLocalEndpointsInternal represents the set of services that couldn't be applied
|
||||
// due to the absence of local endpoints when the internal traffic policy is "Local".
|
||||
// It is used to publish the sync_proxy_rules_no_endpoints_total
|
||||
// metric with the traffic_policy label set to "internal".
|
||||
serviceNoLocalEndpointsInternal map[proxy.ServicePortName]bool
|
||||
// serviceNoLocalEndpointsExternal is a map of services that couldn't have their rules applied
|
||||
// sets.String is used here since we end up calculating endpoint topology multiple times for the same Service
|
||||
// if it has mulitple ports but each Service should only be counted once.
|
||||
serviceNoLocalEndpointsInternal sets.String
|
||||
// serviceNoLocalEndpointsExternal irepresents the set of services that couldn't be applied
|
||||
// due to the absence of any endpoints when the external traffic policy is "Local".
|
||||
// It is used to publish the sync_proxy_rules_no_endpoints_total
|
||||
// metric with the traffic_policy label set to "external".
|
||||
serviceNoLocalEndpointsExternal map[proxy.ServicePortName]bool
|
||||
// sets.String is used here since we end up calculating endpoint topology multiple times for the same Service
|
||||
// if it has mulitple ports but each Service should only be counted once.
|
||||
serviceNoLocalEndpointsExternal sets.String
|
||||
}
|
||||
|
||||
// IPGetter helps get node network interface IP and IPs binded to the IPVS dummy interface
|
||||
@ -1037,8 +1041,8 @@ func (proxier *Proxier) syncProxyRules() {
|
||||
|
||||
klog.V(3).InfoS("Syncing ipvs proxier rules")
|
||||
|
||||
proxier.serviceNoLocalEndpointsInternal = make(map[proxy.ServicePortName]bool)
|
||||
proxier.serviceNoLocalEndpointsExternal = make(map[proxy.ServicePortName]bool)
|
||||
proxier.serviceNoLocalEndpointsInternal = sets.NewString()
|
||||
proxier.serviceNoLocalEndpointsExternal = sets.NewString()
|
||||
// Begin install iptables
|
||||
|
||||
// Reset all buffers used later.
|
||||
@ -1612,23 +1616,8 @@ func (proxier *Proxier) syncProxyRules() {
|
||||
}
|
||||
proxier.deleteEndpointConnections(endpointUpdateResult.StaleEndpoints)
|
||||
|
||||
serviceNoLocalEndpointsInternalTotal := 0
|
||||
serviceNoLocalEndpointsExternalTotal := 0
|
||||
|
||||
for _, v := range proxier.serviceNoLocalEndpointsInternal {
|
||||
if v {
|
||||
serviceNoLocalEndpointsInternalTotal++
|
||||
}
|
||||
}
|
||||
|
||||
for _, v := range proxier.serviceNoLocalEndpointsExternal {
|
||||
if v {
|
||||
serviceNoLocalEndpointsExternalTotal++
|
||||
}
|
||||
}
|
||||
|
||||
metrics.SyncProxyRulesNoLocalEndpointsTotal.WithLabelValues("internal").Set(float64(serviceNoLocalEndpointsInternalTotal))
|
||||
metrics.SyncProxyRulesNoLocalEndpointsTotal.WithLabelValues("external").Set(float64(serviceNoLocalEndpointsExternalTotal))
|
||||
metrics.SyncProxyRulesNoLocalEndpointsTotal.WithLabelValues("internal").Set(float64(proxier.serviceNoLocalEndpointsInternal.Len()))
|
||||
metrics.SyncProxyRulesNoLocalEndpointsTotal.WithLabelValues("external").Set(float64(proxier.serviceNoLocalEndpointsExternal.Len()))
|
||||
}
|
||||
|
||||
// writeIptablesRules write all iptables rules to proxier.natRules or proxier.FilterRules that ipvs proxier needed
|
||||
@ -1992,7 +1981,6 @@ func (proxier *Proxier) syncEndpoint(svcPortName proxy.ServicePortName, onlyNode
|
||||
|
||||
endpoints := proxier.endpointsMap[svcPortName]
|
||||
|
||||
localEndpoints := []proxy.Endpoint{}
|
||||
// Filtering for topology aware endpoints. This function will only
|
||||
// filter endpoints if appropriate feature gates are enabled and the
|
||||
// Service does not have conflicting configuration such as
|
||||
@ -2001,8 +1989,7 @@ func (proxier *Proxier) syncEndpoint(svcPortName proxy.ServicePortName, onlyNode
|
||||
if !ok {
|
||||
klog.InfoS("Unable to filter endpoints due to missing service info", "servicePortName", svcPortName)
|
||||
} else {
|
||||
var clusterEndpoints []proxy.Endpoint
|
||||
clusterEndpoints, localEndpoints, _, _ = proxy.CategorizeEndpoints(endpoints, svcInfo, proxier.nodeLabels)
|
||||
clusterEndpoints, localEndpoints, _, _ := proxy.CategorizeEndpoints(endpoints, svcInfo, proxier.nodeLabels)
|
||||
if onlyNodeLocalEndpoints {
|
||||
if len(localEndpoints) > 0 {
|
||||
endpoints = localEndpoints
|
||||
@ -2022,13 +2009,13 @@ func (proxier *Proxier) syncEndpoint(svcPortName proxy.ServicePortName, onlyNode
|
||||
for _, epInfo := range endpoints {
|
||||
newEndpoints.Insert(epInfo.String())
|
||||
}
|
||||
if svcInfo.UsesLocalEndpoints() && len(localEndpoints) == 0 {
|
||||
if onlyNodeLocalEndpoints && len(newEndpoints) == 0 {
|
||||
if svcInfo.NodeLocalInternal() && utilfeature.DefaultFeatureGate.Enabled(features.ServiceInternalTrafficPolicy) {
|
||||
proxier.serviceNoLocalEndpointsInternal[svcPortName] = true
|
||||
proxier.serviceNoLocalEndpointsInternal.Insert(svcPortName.NamespacedName.String())
|
||||
}
|
||||
|
||||
if svcInfo.NodeLocalExternal() {
|
||||
proxier.serviceNoLocalEndpointsExternal[svcPortName] = true
|
||||
proxier.serviceNoLocalEndpointsExternal.Insert(svcPortName.NamespacedName.String())
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -5865,7 +5865,7 @@ func TestNoEndpointsMetric(t *testing.T) {
|
||||
ipt := iptablestest.NewFake()
|
||||
ipvs := ipvstest.NewFake()
|
||||
ipset := ipsettest.NewFake(testIPSetVersion)
|
||||
fp := NewFakeProxier(ipt, ipvs, ipset, nil, nil, v1.IPv4Protocol)
|
||||
fp := NewFakeProxier(ipt, ipvs, ipset, []net.IP{netutils.ParseIPSloppy("10.0.0.1")}, nil, v1.IPv4Protocol)
|
||||
fp.servicesSynced = true
|
||||
// fp.endpointsSynced = true
|
||||
fp.endpointSlicesSynced = true
|
||||
@ -5879,7 +5879,7 @@ func TestNoEndpointsMetric(t *testing.T) {
|
||||
Spec: v1.ServiceSpec{
|
||||
ClusterIP: "172.20.1.1",
|
||||
Selector: map[string]string{"foo": "bar"},
|
||||
Ports: []v1.ServicePort{{Name: "", TargetPort: intstr.FromInt(80), Protocol: v1.ProtocolTCP, NodePort: 123}},
|
||||
Ports: []v1.ServicePort{{Name: "p80", Port: 80, TargetPort: intstr.FromInt(80), Protocol: v1.ProtocolTCP, NodePort: 30000}},
|
||||
},
|
||||
}
|
||||
if tc.internalTrafficPolicy != nil {
|
||||
@ -5901,7 +5901,7 @@ func TestNoEndpointsMetric(t *testing.T) {
|
||||
Labels: map[string]string{discovery.LabelServiceName: serviceName},
|
||||
},
|
||||
Ports: []discovery.EndpointPort{{
|
||||
Name: utilpointer.StringPtr(""),
|
||||
Name: utilpointer.StringPtr("p80"),
|
||||
Port: utilpointer.Int32Ptr(80),
|
||||
Protocol: &tcpProtocol,
|
||||
}},
|
||||
@ -5934,7 +5934,7 @@ func TestNoEndpointsMetric(t *testing.T) {
|
||||
}
|
||||
|
||||
if tc.expectedSyncProxyRulesNoLocalEndpointsTotalExternal != int(syncProxyRulesNoLocalEndpointsTotalExternal) {
|
||||
t.Errorf("sync_proxy_rules_no_endpoints_total metric mismatch(internal): got=%d, expected %d", int(syncProxyRulesNoLocalEndpointsTotalExternal), tc.expectedSyncProxyRulesNoLocalEndpointsTotalExternal)
|
||||
t.Errorf("sync_proxy_rules_no_endpoints_total metric mismatch(external): got=%d, expected %d", int(syncProxyRulesNoLocalEndpointsTotalExternal), tc.expectedSyncProxyRulesNoLocalEndpointsTotalExternal)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user