Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for sidecarProxy (0.15 sec)

  1. 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)
  2. 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)
  3. pilot/cmd/pilot-agent/app/cmd.go

    				ComponentLogLevel: proxyArgs.ProxyComponentLogLevel,
    				LogAsJSON:         loggingOptions.JSONEncoding,
    				NodeIPs:           proxyArgs.IPAddresses,
    				Sidecar:           proxyArgs.Type == model.SidecarProxy,
    				OutlierLogPath:    proxyArgs.OutlierLogPath,
    			}
    			agentOptions := options.NewAgentOptions(&proxyArgs, proxyConfig, sds)
    			agent := istioagent.NewAgent(proxyConfig, agentOptions, secOpts, envoyOptions)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder.go

    func newClusterWrapper(cluster *cluster.Cluster) *clusterWrapper {
    	return &clusterWrapper{
    		cluster: cluster,
    	}
    }
    
    // sidecarProxy returns true if the clusters are being built for sidecar proxy otherwise false.
    func (cb *ClusterBuilder) sidecarProxy() bool {
    	return cb.proxyType == model.SidecarProxy
    }
    
    func (cb *ClusterBuilder) buildSubsetCluster(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. pkg/model/proxy.go

    )
    
    // NodeType decides the responsibility of the proxy serves in the mesh
    type NodeType string
    
    const (
    	// SidecarProxy type is used for sidecar proxies in the application containers
    	SidecarProxy NodeType = "sidecar"
    
    	// Router type is used for standalone proxies acting as L7/L4 routers
    	Router NodeType = "router"
    
    	// Waypoint type is used for waypoint proxies
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    									HttpFilters: []*hcm.HttpFilter{
    										{Name: "base"},
    									},
    								}),
    							},
    						},
    					},
    				},
    			},
    		},
    	}
    
    	sidecarProxy := &model.Proxy{
    		Type:            model.SidecarProxy,
    		ConfigNamespace: "not-default",
    		Metadata: &model.NodeMetadata{
    			IstioVersion: "1.2.2",
    			Raw: map[string]any{
    				"foo": "sidecar",
    				"bar": "proxy",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_traffic_policy_test.go

    					t.Fatalf("expected alpn list %v; got %v", util.ALPNInMeshWithMxc, got)
    				}
    			},
    		},
    	}
    
    	proxy := &model.Proxy{
    		Type:         model.SidecarProxy,
    		Metadata:     &model.NodeMetadata{},
    		IstioVersion: &model.IstioVersion{Major: 1, Minor: 5},
    	}
    	push := model.NewPushContext()
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. pilot/pkg/model/context.go

    	TrafficInterceptionMode = pm.TrafficInterceptionMode
    	PodPort                 = pm.PodPort
    	StringBool              = pm.StringBool
    	IPMode                  = pm.IPMode
    )
    
    const (
    	SidecarProxy = pm.SidecarProxy
    	Router       = pm.Router
    	Waypoint     = pm.Waypoint
    	Ztunnel      = pm.Ztunnel
    
    	IPv4 = pm.IPv4
    	IPv6 = pm.IPv6
    	Dual = pm.Dual
    )
    
    var _ mesh.Holder = &Environment{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/bench_test.go

    				NetworksWatcher: mesh.NewFixedNetworksWatcher(&meshconfig.MeshNetworks{
    					Networks: createGateways(numNetworks),
    				}),
    			})
    			proxy := &model.Proxy{
    				Type:            model.SidecarProxy,
    				IPAddresses:     []string{"10.3.3.3"},
    				ID:              "random",
    				ConfigNamespace: "default",
    				Metadata:        &model.NodeMetadata{},
    			}
    			push := s.PushContext()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. pkg/istio-agent/agent_test.go

    	"istio.io/istio/tests/util/leak"
    )
    
    func TestServiceNode(t *testing.T) {
    	cases := []struct {
    		in  *Proxy
    		out string
    	}{
    		{
    			in: &Proxy{
    				Type:        model.SidecarProxy,
    				IPAddresses: []string{"10.1.1.0"},
    				ID:          "v0.default",
    				DNSDomain:   "default.svc.cluster.local",
    			},
    			out: "sidecar~10.1.1.0~v0.default~default.svc.cluster.local",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top