Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Mesh (0.04 sec)

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

    								Sni:  "custom.sni.com",
    							},
    						},
    					},
    				},
    			},
    		},
    	}
    
    	mesh := testMesh()
    	mesh.EnableAutoMtls.Value = true
    
    	clusters := buildTestClusters(clusterTest{t: t, serviceHostname: TestServiceNHostname, nodeType: model.SidecarProxy, mesh: mesh, destRule: destRule})
    
    	tlsContext := getTLSContext(t, clusters[1])
    	g.Expect(tlsContext).ToNot(BeNil())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    		name           string
    		clusterName    string
    		port           *model.Port
    		mesh           *meshconfig.MeshConfig
    		connectionPool *networking.ConnectionPoolSettings
    
    		upgrade bool
    	}{
    		{
    			name:        "mesh upgrade - dr default",
    			clusterName: "bar",
    			port:        &model.Port{Protocol: protocol.HTTP},
    			mesh:        &meshconfig.MeshConfig{H2UpgradePolicy: meshconfig.MeshConfig_UPGRADE},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_test.go

    		name              string
    		server            *networking.Server
    		result            *auth.DownstreamTlsContext
    		transportProtocol istionetworking.TransportProtocol
    		mesh              *meshconfig.MeshConfig
    	}{
    		{
    			name: "mesh SDS enabled, tls mode ISTIO_MUTUAL",
    			server: &networking.Server{
    				Hosts: []string{"httpbin.example.com"},
    				Port: &networking.Port{
    					Protocol: string(protocol.HTTPS),
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    				}},
    			}},
    		}, valid: false},
    		{name: "wildcard for mesh gateway", in: &networking.VirtualService{
    			Hosts: []string{"*"},
    			Http: []*networking.HTTPRoute{{
    				Route: []*networking.HTTPRouteDestination{{
    					Destination: &networking.Destination{Host: "foo.baz"},
    				}},
    			}},
    		}, valid: false},
    		{name: "wildcard for non-mesh gateway", in: &networking.VirtualService{
    			Hosts:    []string{"*"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		}
    
    		var errs error
    		emptySelector := in.Selector == nil || len(in.Selector.MatchLabels) == 0
    
    		if emptySelector && len(in.PortLevelMtls) != 0 {
    			errs = appendErrors(errs,
    				fmt.Errorf("mesh/namespace peer authentication cannot have port level mTLS"))
    		}
    
    		if in.PortLevelMtls != nil && len(in.PortLevelMtls) == 0 {
    			errs = appendErrors(errs,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

      istio-mesh-dashboard.json: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    			}
    		}
    		totalRx += n
    		if err != nil || ctx.Err() != nil || totalRx > 100*humanize.GiByte {
    			break
    		}
    
    	}
    	w.WriteHeader(http.StatusOK)
    }
    
    // NetperfHandler - perform mesh style network throughput test
    func (a adminAPIHandlers) NetperfHandler(w http.ResponseWriter, r *http.Request) {
    	ctx, cancel := context.WithCancel(r.Context())
    	defer cancel()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top