Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 755 for svc5 (0.08 sec)

  1. 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)
  2. pkg/proxy/endpointschangetracker_test.go

    			namespacedName:         types.NamespacedName{Name: "svc1", Namespace: "ns1"},
    			paramEndpointSlice:     generateEndpointSlice("svc1", "ns1", 1, 3, 999, 999, []string{"host1", "host2"}, []*int32{ptr.To[int32](80), ptr.To[int32](443)}),
    			paramRemoveSlice:       false,
    			expectedReturnVal:      true,
    			expectedCurrentChange: map[ServicePortName][]*BaseEndpointInfo{
    				makeServicePortName("ns1", "svc1", "port-0", v1.ProtocolTCP): {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/incorrect-port-name-external-name-service-type.yaml

      type: ExternalName
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: nginx-svc2
      namespace: nginx-ns2
    spec:
      externalName: nginx.example.com
      ports:
      - port: 443
        protocol: TCP
        targetPort: 443
      type: ExternalName
    --- 
    apiVersion: v1
    kind: Service
    metadata:
      name: nginx-svc3
      namespace: nginx-ns3
    spec:
      externalName: nginx.example.com
      ports:
      - name: tcp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 09 00:46:04 UTC 2021
    - 641 bytes
    - Viewed (0)
  4. 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)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.addService(t, "svc1",
    		map[string]string{},
    		map[string]string{},
    		[]int32{80}, map[string]string{"app": "a"}, "10.0.0.1")
    	s.assertEvent(t, s.podXdsName("pod1"), s.svcXdsName("svc1"))
    
    	s.labelService(t, "svc1", testNS, map[string]string{constants.AmbientUseWaypointLabel: "test-wp"})
    	s.assertEvent(t, s.svcXdsName("svc1"))
    	s.assertNoEvent(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    			printPod(writer, pod, opts.Revision)
    
    			svcs, err := client.Kube().CoreV1().Services(ns).List(context.TODO(), metav1.ListOptions{})
    			if err != nil {
    				return err
    			}
    
    			matchingServices := make([]corev1.Service, 0, len(svcs.Items))
    			for _, svc := range svcs.Items {
    				if len(svc.Spec.Selector) > 0 {
    					svcSelector := klabels.SelectorFromSet(svc.Spec.Selector)
    					if svcSelector.Matches(podLabels) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. 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)
  8. cluster/addons/cluster-loadbalancing/glbc/default-svc-controller.yaml

    Davanum Srinivas <******@****.***> 1652185809 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/network_test.go

    			svcNames := sets.New[string]("svc1")
    			addresses := c.ambientIndex.All()
    			for _, addr := range addresses {
    				wl := addr.GetWorkload()
    				if wl != nil {
    					if !podNames.Contains(wl.Name) {
    						continue
    					}
    					if addr.GetWorkload().Network != network {
    						return fmt.Errorf("no network workload notify")
    					}
    				}
    				svc := addr.GetService()
    				if svc != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. 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)
Back to top