Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for Implementation (0.18 sec)

  1. cni/README.md

    | HOST_PROBE_SNAT_IPV6 | "fd16:9254:7127:1337:ffff:ffff:ffff:ffff" | IPv6 link local ranges are designed to be collision-resistant by default, and so this probably never needs to be overridden |
    
    ## Sidecar Mode Implementation Details
    
    Istio CNI injection is currently based on the same Pod annotations used in init-container/inject mode.
    
    ### Selection API
    
    - plugin config "exclude namespaces" applies first
    - ambient is enabled if:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. pkg/kube/krt/collection.go

    func NewCollection[I, O any](c Collection[I], hf TransformationSingle[I, O], opts ...CollectionOption) Collection[O] {
    	// For implementation simplicity, represent TransformationSingle as a TransformationMulti so we can share an implementation.
    	hm := func(ctx HandlerContext, i I) []O {
    		res := hf(ctx, i)
    		if res == nil {
    			return nil
    		}
    		return []O{*res}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    )
    
    // DeploymentController implements a controller that materializes a Gateway into an in cluster gateway proxy
    // to serve requests from. This is implemented with a Deployment and Service today.
    // The implementation makes a few non-obvious choices - namely using Server Side Apply from go templates
    // and not using controller-runtime.
    //
    // controller-runtime has a number of constraints that make it inappropriate for usage here, despite this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/config.go

    	// DisableAutomountSAToken indicates to opt out of auto mounting ServiceAccount's API credentials
    	DisableAutomountSAToken bool
    
    	// Ports for this application. Port numbers may or may not be used, depending
    	// on the implementation.
    	Ports Ports
    
    	// ServiceAnnotations is annotations on service object.
    	ServiceAnnotations map[string]string
    
    	// ServiceLabels is the labels on service object.
    	ServiceLabels map[string]string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/discovery/v1/generated.proto

      //
      // * Kubernetes-defined prefixed names:
      //   * 'kubernetes.io/h2c' - HTTP/2 over cleartext as described in https://www.rfc-editor.org/rfc/rfc7540
      //
      // * Other protocols should use implementation-defined prefixed names such as
      // mycompany.com/my-custom-protocol.
      // +optional
      optional string appProtocol = 4;
    }
    
    // EndpointSlice represents a subset of the endpoints that implement a service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy.go

    	}
    }
    
    type adsStream interface {
    	Send(*discovery.DiscoveryResponse) error
    	Recv() (*discovery.DiscoveryRequest, error)
    	Context() context.Context
    }
    
    // StreamAggregatedResources is an implementation of XDS API used for proxying between Istiod and Envoy.
    // Every time envoy makes a fresh connection to the agent, we reestablish a new connection to the upstream xds
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. pkg/dns/client/dns.go

    	requestDuration.Record(time.Since(start).Seconds())
    	log.Debugf("upstream response for hostname %q : %v", hostname, response)
    	return response
    }
    
    // ServeDNS is the implementation of DNS interface
    func (h *LocalDNSServer) ServeDNS(proxy *dnsProxy, w dns.ResponseWriter, req *dns.Msg) {
    	requests.Increment()
    	var response *dns.Msg
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_waypoint.go

    	pre = append(pre, authzBuilder.BuildHTTP(cls)...)
    	// TODO: these feel like the wrong place to insert, but this retains backwards compatibility with the original implementation
    	post = extension.PopAppendHTTP(post, wasm, extensions.PluginPhase_STATS)
    	post = extension.PopAppendHTTP(post, wasm, extensions.PluginPhase_UNSPECIFIED_PHASE)
    	post = append(post, xdsfilters.WaypointUpstreamMetadataFilter)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. README.md

    Envoy filters) that support authentication, authorization, and telemetry collection.
    
    - [istio/ztunnel](https://github.com/istio/ztunnel). The repository contains the Rust implementation of the ztunnel
    component of Ambient mesh.
    
    ## Issue management
    
    We use GitHub to track all of our bugs and feature requests. Each issue we track has a variety of metadata:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. manifests/charts/gateway/README.md

    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Explicitly set values have highest priority, then profile settings, then chart defaults.
    
    As an implementation detail of profiles, the default values for the chart are all nested under `defaults`.
    When configuring the chart, you should not include this.
    That is, `--set some.field=true` should be passed, not `--set defaults.some.field=true`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top