Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 116 for serviceentry (0.35 sec)

  1. tests/integration/pilot/mirror_test.go

    //
    // Since we don't want to rely on actual external websites, we simulate that by using a Sidecar to limit connectivity
    // from "a" so that it cannot reach "external" directly, and we use a ServiceEntry to define our "external" website, which
    // is static and points to the service "external" ip.
    
    // Thus when "a" tries to mirror to the external service, it is actually connecting to "external" (which is not part of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		s.clusterID, testNS, wleName)
    }
    
    // Returns the XDS resource name for the given ServiceEntry IP address.
    func (s *ambientTestServer) seIPXdsName(name string, ip string) string {
    	return fmt.Sprintf("%s/networking.istio.io/ServiceEntry/%s/%s/%s",
    		s.clusterID, testNS, name, ip)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    		cache:       cache,
    	}
    }
    
    // must be called with lock
    func (e *EndpointIndex) clearCacheForService(svc, ns string) {
    	e.cache.Clear(sets.Set[ConfigKey]{{
    		Kind:      kind.ServiceEntry,
    		Name:      svc,
    		Namespace: ns,
    	}: {}})
    }
    
    // Shardz returns a full deep copy of the global map of shards. This should be used only for testing
    // and debugging, as the cloning is expensive.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar_test.go

    					Ports:    port803x,
    					Attributes: ServiceAttributes{
    						Name:      "foo",
    						Namespace: "ns1",
    					},
    				},
    			},
    		},
    		{
    			name:          "multi-port-merge: serviceentry not merge with another namespace",
    			sidecarConfig: configs22,
    			services: []*Service{
    				{
    					Hostname: "foobar.svc.cluster.local",
    					Ports:    port803x[:3],
    					Attributes: ServiceAttributes{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	wildcardNamespace = "*"
    	currentNamespace  = "."
    	wildcardService   = host.Name("*")
    )
    
    var (
    	sidecarScopedKnownConfigTypes = sets.New(
    		kind.ServiceEntry,
    		kind.VirtualService,
    		kind.DestinationRule,
    		kind.Sidecar,
    
    		kind.HTTPRoute,
    		kind.TCPRoute,
    		kind.TLSRoute,
    		kind.GRPCRoute,
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    				pureHTTP = false
    				break
    			}
    		}
    	}
    
    	configsUpdated := sets.New[model.ConfigKey]()
    	for _, config := range configs {
    		if !pureHTTP {
    			configsUpdated.Insert(model.ConfigKey{Kind: kind.ServiceEntry, Name: config.Name, Namespace: config.Namespace})
    		} else {
    			// pure HTTP headless services should not need a full push since they do not
    			// require a Listener based on IP: https://github.com/istio/istio/issues/48207
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/discovery_test.go

    				ConfigsUpdated: sets.New[model.ConfigKey](),
    				Reason:         model.NewReasonStats(trigger),
    			}
    			for c := 0; c < configs; c++ {
    				nreq.ConfigsUpdated.Insert(model.ConfigKey{Kind: kind.ServiceEntry, Name: fmt.Sprintf("%d", c), Namespace: "default"})
    			}
    			req = req.Merge(nreq)
    		}
    		for p := 0; p < proxies; p++ {
    			recordPushTriggers(req.Reason)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/echotest/filters.go

    		match.NotExternal,
    		match.Not(match.Network(srcNw)))
    	return match.Not(excluded)
    }
    
    // reachableFromVM filters out external services due to issues with ServiceEntry resolution
    // TODO https://github.com/istio/istio/issues/27154
    func reachableFromVM(from echo.Instance) match.Matcher {
    	if !from.Config().IsVM() {
    		return match.Any
    	}
    	return match.NotExternal
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. tests/integration/pilot/multiplecontrolplanes/main_test.go

    	t.ConfigIstio().Eval(ns, map[string]any{
    		"Namespace": externalNs,
    		"Revision":  revision,
    	}, `apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-service
      labels:
        istio.io/rev: {{.Revision}}
    spec:
      hosts:
      - "fake.external.com"
      location: MESH_EXTERNAL
      resolution: DNS
      endpoints:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/istio-mesh-dashboard.json

            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "expr": "max(pilot_k8s_cfg_events{type=\"ServiceEntry\", event=\"add\"}) - (max(pilot_k8s_cfg_events{type=\"ServiceEntry\", event=\"delete\"}) or max(up * 0))",
              "format": "time_series",
              "intervalFactor": 1,
              "refId": "A"
            }
          ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top