Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for It (0.02 sec)

  1. istioctl/pkg/describe/describe.go

    }
    
    // describePeerAuthentication fetches all PeerAuthentication in workload and root namespace.
    // It lists the ones applied to the pod, and the current active mTLS mode.
    // When the client doesn't have access to root namespace, it will only show workload namespace Peerauthentications.
    func describePeerAuthentication(
    	writer io.Writer,
    	kubeClient kube.CLIClient,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    // or the full list of endpoints for a service across registries, since it limits
    // scalability.
    //
    // Future optimizations will include grouping the endpoints by labels, gateway or region to
    // reduce the time when subsetting or split-horizon is used. This design assumes pilot
    // tracks all endpoints in the mesh and they fit in RAM - so limit is few M endpoints.
    // It is possible to split the endpoint tracking in future.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Specifies the global logging level settings for the Istio control plane components.
      GlobalLoggingConfig logging = 17;
    
      // The Mesh Identifier. It should be unique within the scope where
      // meshes will interact with each other, but it is not required to be
      // globally/universally unique. For example, if any of the following are true,
      // then two meshes must have different Mesh IDs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_test.go

    	//
    	// Even if a user explicitly created a Sidecar config with an ingress listener for a privileged port,
    	// it is still not worth it creating such a listener if we already known that a proxy will end up
    	// rejecting it.
    	testPrivilegedPorts(t, func(t *testing.T, proxy *model.Proxy, port uint32) []*listener.Listener {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar_test.go

    				{
    					Hostname: "bookinginfo.com",
    					Ports:    port9999,
    				},
    				{
    					Hostname: "private.com",
    				},
    			},
    			nil,
    		},
    		// Validates when service is scoped to Sidecar, it uses service port rather than listener port.
    		{
    			"service-port-used-while-cloning",
    			configs8,
    			services9,
    			nil,
    			[]*Service{
    				{
    					Hostname: "foo.svc.cluster.local",
    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

    		// to the list of non-serviceregistry hosts
    		foundSvcMatch := false
    		for svcHost, svc := range serviceRegistry {
    			// First, check if this service matches the VS host.
    			// If it does, then we never want to add it to the nonServiceRegistryHosts list.
    			// The result is OR'd so we don't overwrite a previously true value
    			// localMatch is tracking the match found within this iteration of the loop
    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. pkg/workloadapi/workload.pb.go

    	// In STRICT mode, only endpoints that meets all of the routing preferences will be considered.
    	// This can be used, for instance, to keep traffic ONLY within the same cluster/node/region.
    	// This should be used with caution, as it can result in all traffic being dropped if there is no matching endpoints,
    	// even if there are endpoints outside of the preferences.
    	LoadBalancing_STRICT LoadBalancing_Mode = 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener.go

    		if features.HTTP10 {
    			// If HTTP 1.0 is enabled, we will match it
    			return []string{"http/1.0", "http/1.1", "h2c"}
    		}
    		// Otherwise, matching would just lead to immediate rejection. By not matching, we can let it pass
    		// through as raw TCP at least.
    		// NOTE: mtlsHTTPALPNs can always include 1.0, for simplicity, as it will only be sent if a client
    		return []string{"http/1.1", "h2c"}
    	}()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. tests/integration/ambient/baseline_test.go

    						if from.Config().HasSidecar() && !opts.To.Config().HasProxyCapabilities() {
    							// Sidecar respects it
    							return false
    						}
    						if from.Config().HasAnyWaypointProxy() && !opts.To.Config().HasProxyCapabilities() {
    							// Waypoint respects it
    							return false
    						}
    						return true
    					},
    					ExpectMTLS: mtlsOnExpect,
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	testService = "test"
    )
    
    // eventually polls cond until it completes (returns true) or times out (resulting in a test failure).
    func eventually(t test.Failer, cond func() bool) {
    	t.Helper()
    	retry.UntilSuccessOrFail(t, func() error {
    		if !cond() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top