Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for svc4 (0.34 sec)

  1. pilot/pkg/xds/delta_test.go

    			Name:      "c",
    		},
    	}
    	svcA := &model.ServiceInfo{
    		Service: &workloadapi.Service{
    			Name:      "a",
    			Namespace: "default",
    			Hostname:  "a.default.svc.cluster.local",
    		},
    	}
    	svcB := &model.ServiceInfo{
    		Service: &workloadapi.Service{
    			Name:      "b",
    			Namespace: "default",
    			Hostname:  "b.default.svc.cluster.local",
    		},
    	}
    	svcC := &model.ServiceInfo{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_waypoint.go

    }
    
    func (lb *ListenerBuilder) buildWaypointInternal(wls []model.WorkloadInfo, svcs []*model.Service) *listener.Listener {
    	ipMatcher := &matcher.IPMatcher{}
    	chains := []*listener.FilterChain{}
    	for _, svc := range svcs {
    		portMapper := match.NewDestinationPort()
    		for _, port := range svc.Ports {
    			if port.Protocol == protocol.UDP {
    				continue
    			}
    			portString := strconv.Itoa(port.Port)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    	']':  true,
    	'_':  true, // unreserved
    	'~':  true, // unreserved
    }
    
    // ValidHeaderFieldValue reports whether v is a valid "field-value" according to
    // http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2 :
    //
    //	message-header = field-name ":" [ field-value ]
    //	field-value    = *( field-content | LWS )
    //	field-content  = <the OCTETs making up the field-value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. 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)
  5. pilot/pkg/model/gateway_test.go

    	hosts := mgw.GetAutoPassthrughGatewaySNIHosts()
    	expectedHosts := sets.Set[string]{}
    	expectedHosts.InsertAll("a.apps.svc.cluster.local", "b.apps.svc.cluster.local")
    	if !hosts.Equals(expectedHosts) {
    		t.Errorf("expected to get: [a.apps.svc.cluster.local,b.apps.svc.cluster.local], got: %s", hosts.String())
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_builder_test.go

    			destRule: &networking.DestinationRule{
    				Host: "foo.default.svc.cluster.local",
    				TrafficPolicy: &networking.TrafficPolicy{
    					Tls: &networking.ClientTLSSettings{
    						Mode:            networking.ClientTLSSettings_SIMPLE,
    						CaCertificates:  constants.RootCertFilename,
    						Sni:             "foo.default.svc.cluster.local",
    						SubjectAltNames: []string{"foo.default.svc.cluster.local"},
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  7. pkg/test/framework/components/ambient/waypoint.go

    		doLabel := func(labels map[string]string) error {
    			// update needs the latest version
    			svc, err := c.Kube().CoreV1().Services(ns.Name()).Get(t.Context(), service, metav1.GetOptions{})
    			if err != nil {
    				return err
    			}
    			svc.ObjectMeta.SetLabels(labels)
    			_, err = c.Kube().CoreV1().Services(ns.Name()).Update(t.Context(), svc, metav1.UpdateOptions{})
    			return err
    		}
    
    		if err = doLabel(newLabels); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    	res := map[string]*workloadapi.PortList{}
    	for _, svc := range services {
    		n := namespacedHostname(svc.Namespace, svc.Hostname)
    		pl := &workloadapi.PortList{
    			Ports: make([]*workloadapi.Port, 0, len(svc.Ports)),
    		}
    		res[n] = pl
    		for _, port := range svc.Ports {
    			targetPort := port.TargetPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. pkg/controller/endpointslice/endpointslice_controller_test.go

    	sliceInfo := &topologycache.SliceInfo{
    		ServiceKey:  "ns/svc",
    		AddressType: discovery.AddressTypeIPv4,
    		ToCreate: []*discovery.EndpointSlice{
    			{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "svc-abc",
    					Namespace: "ns",
    					Labels: map[string]string{
    						discovery.LabelServiceName: "svc",
    						discovery.LabelManagedBy:   controllerName,
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  10. tests/integration/pilot/gateway_test.go

    		Run(func(t framework.TestContext) {
    			c := t.Clusters().Default()
    			var svc *corev1.Service
    			svc, _, err := testKube.WaitUntilServiceEndpointsAreReady(c.Kube(), "istio-system", "istio-ingressgateway")
    			if err != nil {
    				t.Fatalf("error getting ingress gateway svc ips: %v", err)
    			}
    			for _, ip := range svc.Spec.ClusterIPs {
    				t.NewSubTest("gateway-readiness-probe-" + ip).Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top