Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 174 for SVC (0.03 sec)

  1. pkg/dns/client/dns_test.go

    			),
    		},
    		{
    			startsWith: "svc-with-alt",
    			expected: sets.New(
    				"svc-with-alt.",
    				"svc-with-alt.ns1.",
    				"svc-with-alt.ns1.svc.",
    				"svc-with-alt.ns1.svc.clusterset.local.",
    				"svc-with-alt.ns1.svc.cluster.local.",
    				"svc-with-alt.ns1.svc.cluster.local",
    			),
    		},
    		{
    			startsWith: "*.wildcard",
    			expected:   sets.New("*.wildcard", "*.wildcard."),
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. pkg/dns/server/name_table_test.go

    						Ips:       []string{"19.6.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod3.headless-svc",
    						Namespace: "testns",
    					},
    					"pod4.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"9.16.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod4.headless-svc",
    						Namespace: "testns",
    					},
    					"headless-svc.testns.svc.cluster.local": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. pkg/proxy/servicechangetracker_test.go

    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "port1", "UDP", 345, 678, 0)
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "port2", "TCP", 344, 677, 0)
    		}),
    		makeTestService("ns1", "load-balancer", func(svc *v1.Service) {
    			svc.Spec.Type = v1.ServiceTypeLoadBalancer
    			svc.Spec.ClusterIP = "172.16.55.11"
    			svc.Spec.LoadBalancerIP = "5.6.7.8"
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "foobar", "UDP", 8675, 30061, 7000)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/number_generated_rules_test.go

    			expectedNatRules:    325,
    		},
    
    		{
    			name: "0 Services 0 EndpointsPerService - LoadBalancer",
    			svcFunc: func(svc *v1.Service) {
    				svc.Spec.Type = v1.ServiceTypeLoadBalancer
    				svc.Spec.ExternalIPs = []string{"1.2.3.4"}
    				svc.Spec.LoadBalancerSourceRanges = []string{" 1.2.3.4/28"}
    				svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{
    					IP: "1.2.3.4",
    				}}
    			},
    			services:            0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. pkg/kubelet/network/dns/dns_test.go

    			hostNames:    []string{"testNS.svc.TEST", "svc.TEST", "TEST"},
    			resultSearch: []string{"testNS.svc.TEST", "svc.TEST", "TEST"},
    			events:       []string{},
    		},
    
    		{
    			desc:         "valid: 5 search paths",
    			hostNames:    []string{"testNS.svc.TEST", "svc.TEST", "TEST", "AAA", "BBB"},
    			resultSearch: []string{"testNS.svc.TEST", "svc.TEST", "TEST", "AAA", "BBB"},
    			events:       []string{},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. pkg/registry/core/service/strategy_test.go

    		svc.Spec.Type = api.ServiceTypeNodePort
    	}
    	setTypeClusterIP := func(svc *api.Service) {
    		svc.Spec.Type = api.ServiceTypeClusterIP
    	}
    	setTypeLoadBalancer := func(svc *api.Service) {
    		svc.Spec.Type = api.ServiceTypeLoadBalancer
    	}
    	clearClusterIPs := func(svc *api.Service) {
    		svc.Spec.ClusterIP = ""
    		svc.Spec.ClusterIPs = nil
    	}
    	changeClusterIPs := func(svc *api.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/controller/repairip.go

    		},
    		Spec: networkingv1alpha1.IPAddressSpec{
    			ParentRef: serviceToRef(svc),
    		},
    	}
    }
    
    func serviceToRef(svc *v1.Service) *networkingv1alpha1.ParentReference {
    	if svc == nil {
    		return nil
    	}
    
    	return &networkingv1alpha1.ParentReference{
    		Group:     "",
    		Resource:  "services",
    		Namespace: svc.Namespace,
    		Name:      svc.Name,
    	}
    }
    
    func getFamilyByIP(ip net.IP) v1.IPFamily {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/httproute.go

    				Hostname:       svc.Hostname,
    				DefaultAddress: svc.GetAddressForProxy(node),
    				MeshExternal:   svc.MeshExternal,
    				Resolution:     svc.Resolution,
    				Ports:          []*model.Port{svcPort},
    				Attributes: model.ServiceAttributes{
    					Namespace:       svc.Attributes.Namespace,
    					ServiceRegistry: svc.Attributes.ServiceRegistry,
    					Labels:          svc.Attributes.Labels,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/memory/discovery.go

    func (sd *ServiceDiscovery) AddService(svc *model.Service) {
    	sd.mutex.Lock()
    	svc.Attributes.ServiceRegistry = provider.Mock
    	var old *model.Service
    	event := model.EventAdd
    	if o, f := sd.services[svc.Hostname]; f {
    		old = o
    		event = model.EventUpdate
    	}
    	sd.services[svc.Hostname] = svc
    
    	if sd.XdsUpdater != nil {
    		sd.XdsUpdater.SvcUpdate(sd.shardKey(), string(svc.Hostname), svc.Attributes.Namespace, model.EventAdd)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/network.go

    			for _, gw := range v.Gateways {
    				if gwSvcName := gw.GetRegistryServiceName(); gwSvcName != "" {
    					svc := host.Name(gwSvcName)
    					n.registryServiceNameGateways[svc] = append(n.registryServiceNameGateways[svc], model.NetworkGateway{
    						Network: network.ID(id),
    						Cluster: n.clusterID,
    						Port:    gw.GetPort(),
    					})
    				}
    			}
    		}
    
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top