Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for Mesh (0.07 sec)

  1. pilot/pkg/security/authn/policy_applier_test.go

    	defer push.JwtKeyResolver.Close()
    
    	push.ServiceIndex.HostnameAndNamespace[host.Name("jwt-token-issuer.mesh")] = map[string]*model.Service{}
    	push.ServiceIndex.HostnameAndNamespace[host.Name("jwt-token-issuer.mesh")]["mesh"] = &model.Service{
    		Hostname: "jwt-token-issuer.mesh.svc.cluster.local",
    	}
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    	when := "createNewContext"
    	newPush := NewPushContext()
    	newPush.Mesh = env.Mesh()
    	newPush.InitContext(env, nil, nil)
    	verifyServices(true, fmt.Sprintf(testDesc, otherNS, when), otherNS, newPush)
    	verifyServices(true, fmt.Sprintf(testDesc, defaultNS, when), defaultNS, newPush)
    
    	oldPush := newPush
    	newPush = NewPushContext()
    	newPush.Mesh = env.Mesh()
    	svcName := "svc6.foo.cluster.local"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/httproute_test.go

    	}
    }
    
    func TestSidecarStatefulsessionFilter(t *testing.T) {
    	virtualServiceSpec := &networking.VirtualService{
    		Hosts:    []string{"test-service.default.svc.cluster.local", "test-service.svc.mesh.acme.net"},
    		Gateways: []string{"mesh"},
    		Http: []*networking.HTTPRoute{
    			{
    				Route: []*networking.HTTPRouteDestination{
    					{
    						Destination: &networking.Destination{
    							Host: "test-service.default.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    	ProxyConfigs *ProxyConfigs `json:"-"`
    
    	// The following data is either a global index or used in the inbound path.
    	// Namespace specific views do not apply here.
    
    	// Mesh configuration for the mesh.
    	Mesh *meshconfig.MeshConfig `json:"-"`
    
    	// PushVersion describes the push version this push context was computed for
    	PushVersion string
    
    	// LedgerVersion is the version of the configuration ledger
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar_test.go

    				},
    			}
    			ps := NewPushContext()
    			meshConfig := mesh.DefaultMeshConfig()
    			ps.Mesh = meshConfig
    			sidecarScope := convertToSidecarScope(ps, cfg, "default")
    			if len(tt.egress) == 0 {
    				sidecarScope = DefaultSidecarScopeForNamespace(ps, "default")
    			}
    
    			for k, v := range tt.contains {
    				if ok := sidecarScope.DependsOnConfig(k, ps.Mesh.RootNamespace); ok != v {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    	listenPort int,
    	mesh *meshconfig.MeshConfig,
    	mostSpecificWildcardVsIndex map[host.Name]types.NamespacedName,
    ) []VirtualHostWrapper {
    	meshGateway := sets.New(constants.IstioMeshGateway)
    	opts := RouteOptions{
    		// Sidecar is never terminating TLS
    		IsTLS: false,
    		// Sidecar is never doing H3 (yet)
    		IsHTTP3AltSvcHeaderNeeded: false,
    		Mesh:                      mesh,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. pilot/pkg/model/virtualservice_test.go

    			root: []*networking.HTTPMatchRequest{
    				{
    					Uri: &networking.StringMatch{
    						MatchType: &networking.StringMatch_Prefix{Prefix: "/productpage"},
    					},
    					Gateways: []string{"ingress-gateway", "mesh"},
    				},
    			},
    			delegate: []*networking.HTTPMatchRequest{
    				{
    					Uri: &networking.StringMatch{
    						MatchType: &networking.StringMatch_Exact{Exact: "/productpage/v1"},
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // If an administrator expects that any of these conditions may become true in
      // the future, they should ensure their meshes have different Mesh IDs
      // assigned.
      //
      // Within a multicluster mesh, each cluster must be (manually or auto)
      // configured to have the same Mesh ID value. If an existing cluster 'joins' a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    			}
    			gwMap[ref] = gwMap[alias]
    		}
    
    		reportGatewayStatus(r, obj, classInfo, gatewayServices, servers, err)
    	}
    	// Insert a parent for Mesh references.
    	gwMap[meshParentKey] = []*parentInfo{
    		{
    			InternalName: "mesh",
    			// Mesh has no configurable AllowedKinds, so allow all supported
    			AllowedKinds: []k8s.RouteGroupKind{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_tls_test.go

    			opts := &buildClusterOpts{
    				mutable: newClusterWrapper(&cluster.Cluster{
    					ClusterDiscoveryType: &cluster.Cluster_Type{Type: test.discoveryType},
    				}),
    				mesh: push.Mesh,
    			}
    			if test.h2 {
    				setH2Options(opts.mutable)
    			}
    			cb.applyUpstreamTLSSettings(opts, test.tls, test.mtlsCtx)
    
    			if test.expectTransportSocket && opts.mutable.cluster.TransportSocket == nil ||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
Back to top