Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 595 for vips (0.12 sec)

  1. pilot/pkg/serviceregistry/kube/controller/serviceimportcache_test.go

    		// Wait for the XDS event.
    		ic.checkXDS(t)
    	}
    }
    
    func (ic *serviceImportCacheImpl) setServiceImportVIPs(t *testing.T, vips []string) {
    	t.Helper()
    
    	// Get the ServiceImport
    	si := ic.getServiceImport(t)
    
    	// Apply the ClusterSet IPs.
    	si.Spec.IPs = vips
    	if _, err := ic.client.Dynamic().Resource(mcs.ServiceImportGVR).Namespace(serviceImportNamespace).Update(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    	}
    	sort.Strings(ips)
    	return ips
    }
    
    // genMCSService generates an MCS service based on the given real k8s service. The list of vips must be non-empty.
    func (ic *serviceImportCacheImpl) genMCSService(realService *model.Service, mcsHost host.Name, vips []string) *model.Service {
    	mcsService := realService.DeepCopy()
    	mcsService.Hostname = mcsHost
    	mcsService.DefaultAddress = vips[0]
    	mcsService.ClusterVIPs.Addresses = map[cluster.ID][]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

        }
      },
      "services": {
        "/10.96.65.117": {
          "name": "namespace-istio-waypoint",
          "namespace": "bookinfo",
          "hostname": "namespace-istio-waypoint.bookinfo.svc.cluster.local",
          "vips": [
            "/10.96.65.117"
          ],
          "ports": {
            "15008": 15008,
            "15021": 15021
          },
          "endpoints": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/testdata/localhost.yaml

        name: deny-9999
        namespace: default
        scope: Namespace
    services:
    - name: local
      namespace: default
      hostname: example.com
      vips:
        - /127.10.0.1
      ports:
        80: 8080
    - name: remote
      namespace: default
      hostname: example2.com
      vips:
        - remote/127.10.0.2
      ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. releasenotes/notes/46465.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 20:53:04 UTC 2023
    - 206 bytes
    - Viewed (0)
  6. releasenotes/notes/50138.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 173 bytes
    - Viewed (0)
  7. releasenotes/notes/agent-dns-capture.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
    - 26826
    releaseNotes:
    - |
      **Added** Experimental DNS resolution in the Istio agent to better support use cases like service entries
      with TCP services without VIPs, multicluster DNS resolution, and DNS resolution of Kubernetes services
      from VM sidecars. This feature is disabled by default and can be enabled by setting the following in the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 08 04:32:46 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/hns.go

    		return nil, err
    	}
    	if len(vip) > 0 {
    		id = loadBalancerIdentifier{protocol: protocol, internalPort: internalPort, externalPort: externalPort, vip: vip, endpointsHash: hash}
    		vips = append(vips, vip)
    	} else {
    		id = loadBalancerIdentifier{protocol: protocol, internalPort: internalPort, externalPort: externalPort, endpointsHash: hash}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    	var waypointAddress *workloadapi.GatewayAddress
    	if w != nil {
    		waypointAddress = a.getWaypointAddress(w)
    	}
    
    	// TODO this is only checking one controller - we may be missing service vips for instances in another cluster
    	res := make([]*workloadapi.Service, 0, len(svc.Spec.Hosts))
    	for _, h := range svc.Spec.Hosts {
    		res = append(res, &workloadapi.Service{
    			Name:            svc.Name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/eds_sh_test.go

    					"10.4.0.1": 2,
    					"10.4.0.2": 2,
    					"10.4.0.3": 2,
    					"10.4.0.4": 2,
    				},
    			},
    		},
    		{
    			// Verify that EDS from network2 will return 2 local endpoints with local VIPs + 2 remote
    			// endpoints weighted accordingly with the IP of the ingress gateway.
    			network:   "network2",
    			sidecarID: sidecarID("10.2.0.1", "app3"),
    			want: expectedResults{
    				weights: map[string]uint32{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top