Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Implementation (0.18 sec)

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

    	if e.NumField() != 14 {
    		t.Fatalf("Expected 14 fields, got %v. This means we need to update filterChainMatchEqual implementation", e.NumField())
    	}
    }
    
    func TestInboundListener_PrivilegedPorts(t *testing.T) {
    	// Verify that an explicit ingress listener will not bind to privileged ports
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/cluster/topology.go

    package cluster
    
    import (
    	"bytes"
    	"fmt"
    
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test/framework/config"
    )
    
    // Map can be given as a shared reference to multiple Topology/Cluster implementations.
    // allowing clusters to find each other for lookups of Primary, ConfigCluster, etc.
    type Map = map[string]Cluster
    
    func NewTopology(config Config, allClusters Map) Topology {
    	return Topology{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. pilot/pkg/simulation/traffic.go

    		}
    	}
    	return nil
    }
    
    // Follow the 8 step Sieve as in
    // https://www.envoyproxy.io/docs/envoy/latest/api-v3/config/listener/v3/listener_components.proto.html#config-listener-v3-filterchainmatch
    // The implementation may initially be confusing because of a property of the
    // Envoy algorithm - at each level we will filter out all FilterChains that do
    // not match. This means an empty match (`{}`) may not match if another chain
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent.go

    	// generate metadata
    	node, err := a.generateNodeMetadata()
    	if err != nil {
    		return fmt.Errorf("failed generating node metadata: %v", err)
    	}
    
    	// GRPC bootstrap requires this. Original implementation injected this via env variable, but
    	// this interfere with envoy, we should be able to use both envoy for TCP/HTTP and proxyless.
    	node.Metadata.Generator = "grpc"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      map<string, string> limits = 1;
    
      // The minimum amount of compute resources required. If Requests is omitted for a container,
      // it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value.
      // More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
      map<string, string> requests = 2;
    }
    
    // Mirrors ServiceAccount for unmarshaling.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server.go

    		}
    		// Stop gRPC services.  If gRPC services fail to stop in the shutdown duration,
    		// force stop them. This does not happen normally.
    		stopped := make(chan struct{})
    		go func() {
    			// Some grpcServer implementations do not support GracefulStop. Unfortunately, this is not
    			// exposed; they just panic. To avoid this, we will recover and do a standard Stop when its not
    			// support.
    			defer func() {
    				if r := recover(); r != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

    				// TLS is not terminated, so we will attempt to decode as HTTP and fail
    				Error: simulation.ErrProtocolError,
    			},
    			Permissive: simulation.Result{
    				// This could also be a protocol error. In the current implementation, we choose not
    				// to create a match since if we did it would just be rejected in HCM; no match
    				// is more performant
    				Error: simulation.ErrNoFilterChain,
    			},
    			Strict: simulation.Result{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// The minimum amount of compute resources required. If Requests is omitted for a container,
    	// it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value.
    	// More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top