Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 341 for svc5 (0.04 sec)

  1. pilot/pkg/networking/core/cluster_waypoint.go

    	clusters := []*cluster.Cluster{}
    
    	for _, svc := range svcs {
    		for _, port := range svc.Ports {
    			if port.Protocol == protocol.UDP {
    				continue
    			}
    			if port.Protocol.IsUnsupported() || port.Protocol.IsTCP() {
    				clusters = append(clusters, cb.buildWaypointInboundVIPCluster(proxy, svc, *port, "tcp").build())
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. releasenotes/notes/merge-svc.yaml

    Zhonghu Xu <******@****.***> 1709538577 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 07:49:37 UTC 2024
    - 912 bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/serviceexportcache_test.go

    		}
    
    		hostName := host.Name(event.ID)
    		svc := ec.GetService(hostName)
    		if svc == nil {
    			return fmt.Errorf("unable to find service for host %s", hostName)
    		}
    		return ec.checkEndpoint(exported, event.Endpoints[0])
    	}, serviceExportTimeout)
    }
    
    func (ec *serviceExportCacheImpl) getEndpoint(endpoints *model.EndpointIndex) *model.IstioEndpoint {
    	svcs := ec.Services()
    	for _, s := range svcs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. releasenotes/notes/svc-external-name.yaml

    dwq <******@****.***> 1676903817 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 14:36:57 UTC 2023
    - 225 bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/endpointslice_test.go

    		[]int32{8080}, map[string]string{"app": appName}, t)
    
    	// Ensure that the service is available.
    	hostname := kube.ServiceHostname(svcName, ns, controller.opts.DomainSuffix)
    	svc := controller.GetService(hostname)
    	if svc == nil {
    		t.Fatal("failed to get service")
    	}
    
    	// Create an endpoint that indicates it's an MCS endpoint for the service.
    	svc1Ips := []string{"128.0.0.1"}
    	portNames := []string{"tcp-port"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect.yaml

          sectionName: https
      hostnames:
        - my-filter.example.com
      rules:
        - matches:
            - path:
                type: PathPrefix
                value: /
          backendRefs:
            - name: my-filter-svc1
              weight: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.txt

    10.244.0.190:9080                                HEALTHY                  outbound|9080||details.default.svc.cluster.local
    10.244.0.185:9200                                HEALTHY                  outbound|9200||elasticsearch.skywalking.svc.cluster.local
    10.244.0.185:9300                                HEALTHY                  outbound|9300||elasticsearch.skywalking.svc.cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 21 14:17:23 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/conversion.go

    			resolution = model.DNSLB
    		}
    	}
    	if svc.Spec.InternalTrafficPolicy != nil && *svc.Spec.InternalTrafficPolicy == corev1.ServiceInternalTrafficPolicyLocal {
    		nodeLocal = true
    	}
    
    	if svc.Spec.ClusterIP == corev1.ClusterIPNone { // headless services should not be load balanced
    		resolution = model.Passthrough
    	} else if svc.Spec.ClusterIP != "" {
    		addrs[0] = svc.Spec.ClusterIP
    		if len(svc.Spec.ClusterIPs) > 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. pkg/util/iptables/save_restore_test.go

    		:KUBE-NODEPORT-HOST - [0:0]
    		:KUBE-PORTALS-CONTAINER - [0:0]
    		:KUBE-PORTALS-HOST - [0:0]
    		:KUBE-SVC-1111111111111111 - [0:0]
    		:KUBE-SVC-2222222222222222 - [0:0]
    		:KUBE-SVC-3333333333333333 - [0:0]
    		:KUBE-SVC-4444444444444444 - [0:0]
    		:KUBE-SVC-5555555555555555 - [0:0]
    		:KUBE-SVC-6666666666666666 - [0:0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/util/hosts_test.go

    	// FQDN, same namespace, all namespaces scope
    	g.Expect(NewScopedFqdn("*", "default", "foo.default.svc.cluster.local")).To(Equal(ScopedFqdn("*/foo.default.svc.cluster.local")))
    	// FQDN, cross namespace, all namespaces scope
    	g.Expect(NewScopedFqdn("*", "other", "foo.default.svc.cluster.local")).To(Equal(ScopedFqdn("*/foo.default.svc.cluster.local")))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top