Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Mesh (0.59 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. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    will be written referencing one mesh from the other # # 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 # multicluster mesh, it will need to be migrated to the new mesh ID. Details # of migration TBD, and it may be a disruptive operation to change...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

        - extensions.istio.io
        apiVersions:
        - '*'
        operations:
        - CREATE
        - UPDATE
        resources:
        - '*'
      sideEffects: None
    
    ---
    apiVersion: v1
    data:
      mesh: |-
        defaultConfig:
          discoveryAddress: istiod.istio-system.svc:15012
          tracing:
            zipkin:
              address: zipkin.istio-system:9411
        defaultProviders:
          metrics:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  6. pkg/test/framework/features/allowlist.txt

    galley_test,TestConversion/extensions_v1beta1_ingress_basic
    galley_test,TestConversion/extensions_v1beta1_ingress_merge
    galley_test,TestConversion/extensions_v1beta1_ingress_multihost
    galley_test,TestConversion/mesh.istio.io_v1alpha1_meshconfig
    galley_test,TestConversion/networking.istio.io_v1alpha3_destinationRule
    galley_test,TestConversion/networking.istio.io_v1alpha3_gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 103.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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