Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for sidecarProxy (0.18 sec)

  1. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    			proxy:        &model.Proxy{Type: model.SidecarProxy, ConfigNamespace: "not-default"},
    			patchContext: networking.EnvoyFilter_SIDECAR_OUTBOUND,
    			output:       sidecarOutboundOut,
    		},
    		{
    			name:         "sidecar inbound cluster patch",
    			input:        sidecarInboundIn,
    			patchContext: networking.EnvoyFilter_SIDECAR_INBOUND,
    			proxy:        &model.Proxy{Type: model.SidecarProxy, ConfigNamespace: "not-default"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. pkg/dns/server/name_table_test.go

    		DNSDomain:   "testns.svc.cluster.local",
    	}
    	pod3 := &model.Proxy{
    		IPAddresses: []string{"19.6.7.8"},
    		Metadata:    &model.NodeMetadata{Network: "nw1"},
    		Type:        model.SidecarProxy,
    		DNSDomain:   "testns.svc.cluster.local",
    	}
    	pod4 := &model.Proxy{
    		IPAddresses: []string{"9.16.7.8"},
    		Metadata:    &model.NodeMetadata{ClusterID: "cl1"},
    		Type:        model.SidecarProxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. pilot/pkg/xds/nds_test.go

    	}{
    		{
    			name:      "partial push with headless endpoint update",
    			proxy:     &model.Proxy{Type: model.SidecarProxy},
    			request:   &model.PushRequest{Reason: model.NewReasonStats(model.HeadlessEndpointUpdate)},
    			nameTable: emptyNameTable,
    		},
    		{
    			name:      "full push",
    			proxy:     &model.Proxy{Type: model.SidecarProxy},
    			request:   &model.PushRequest{Full: true},
    			nameTable: emptyNameTable,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/name_table.go

    // will only be effective if DNS capture is enabled in the proxy
    func (configgen *ConfigGeneratorImpl) BuildNameTable(node *model.Proxy, push *model.PushContext) *dnsProto.NameTable {
    	if node.Type != model.SidecarProxy {
    		// DNS resolution is only for sidecars
    		return nil
    	}
    	return dnsServer.BuildNameTable(dnsServer.Config{
    		Node:                        node,
    		Push:                        push,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    		{
    			clusterName:           "outbound|8080||*.example.org",
    			useDownStreamProtocol: false,
    			proxyType:             model.SidecarProxy,
    			clusters:              7,
    		},
    		{
    			clusterName:           "inbound|10001||",
    			useDownStreamProtocol: false,
    			proxyType:             model.SidecarProxy,
    			clusters:              7,
    		},
    		{
    			clusterName:           "outbound|9090||*.example.org",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/plugin/authn/authentication.go

    		filter := b.applier.JwtFilter(true, b.proxy.Type != model.SidecarProxy)
    		if filter != nil {
    			return []*hcm.HttpFilter{filter}
    		}
    		return nil
    	}
    	res := []*hcm.HttpFilter{}
    	if filter := b.applier.JwtFilter(false, false); filter != nil {
    		res = append(res, filter)
    	}
    	forSidecar := b.proxy.Type == model.SidecarProxy
    	if filter := b.applier.AuthNFilter(forSidecar); filter != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. pilot/pkg/xds/proxy_dependencies.go

    	// For Gateways, we do not care about the following configs for example Sidecar.
    	model.Router: sets.New(kind.Sidecar),
    	// For Sidecar, we do not care about the following configs for example Gateway.
    	model.SidecarProxy: sets.New(kind.Gateway, kind.KubernetesGateway),
    }
    
    // ConfigAffectsProxy checks if a pushEv will affect a specified proxy. That means whether the push will be performed
    // towards the proxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. pilot/pkg/xds/proxy_dependencies_test.go

    				want:    true,
    			},
    		)
    	}
    
    	// tests for kind-affect-proxy.
    	for _, nodeType := range []model.NodeType{model.Router, model.SidecarProxy} {
    		proxy := gateway
    		if nodeType == model.SidecarProxy {
    			proxy = sidecar
    		}
    		for k := range UnAffectedConfigKinds[proxy.Type] {
    			cases = append(cases, Case{
    				name:    fmt.Sprintf("kind %s not affect %s", k.String(), nodeType),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_builder_test.go

    			},
    		},
    	}
    	cg := NewConfigGenTest(t, TestOptions{Configs: getEnvoyFilterConfigs(configPatches)})
    
    	gatewayProxy := cg.SetupProxy(&model.Proxy{Type: model.Router, ConfigNamespace: "not-default"})
    	sidecarProxy := cg.SetupProxy(&model.Proxy{ConfigNamespace: "not-default"})
    	type fields struct {
    		GatewayListeners        []*listener.Listener
    		InboundListeners        []*listener.Listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_cache.go

    		proxyVersion:    cb.proxyVersion,
    		locality:        cb.locality,
    		proxyClusterID:  cb.clusterID,
    		proxySidecar:    cb.sidecarProxy(),
    		proxyView:       cb.proxyView,
    		hbone:           cb.sendHbone,
    		http2:           port.Protocol.IsHTTP2(),
    		downstreamAuto:  cb.sidecarProxy() && port.Protocol.IsUnsupported(),
    		supportsIPv4:    cb.supportsIPv4,
    		service:         service,
    		destinationRule: dr,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top