Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for sidecarProxy (0.21 sec)

  1. pilot/pkg/serviceregistry/mock/discovery_mock.go

    	// HelloInstanceV0 is a mock IP address for v0 of HelloService
    	HelloInstanceV0 = MakeIP(HelloService, 0)
    
    	// HelloProxyV0 is a mock proxy v0 of HelloService
    	HelloProxyV0 = model.Proxy{
    		Type:         model.SidecarProxy,
    		IPAddresses:  []string{HelloInstanceV0},
    		ID:           "v0.default",
    		DNSDomain:    "default.svc.cluster.local",
    		IstioVersion: model.MaxIstioVersion,
    		Metadata:     &model.NodeMetadata{},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 02:37:56 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/extension_configuration_patch_test.go

    	push.InitContext(env, nil, nil)
    
    	for _, c := range testCases {
    		t.Run(c.name, func(t *testing.T) {
    			gotConfigs := InsertedExtensionConfigurations(push.EnvoyFilters(&model.Proxy{Type: model.SidecarProxy, ConfigNamespace: "not-default"}),
    				c.requestedNames)
    			if len(gotConfigs) != len(c.wantExtensionConfig) {
    				t.Fatalf("number of extension config got %v want %v", len(gotConfigs), len(c.wantExtensionConfig))
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. pilot/pkg/xds/lds.go

    	model.Router: sets.New(
    		// for autopassthrough gateways, we build filterchains per-dr subset
    		kind.WorkloadGroup,
    		kind.WorkloadEntry,
    		kind.Secret,
    		kind.ProxyConfig,
    		kind.DNSName,
    	),
    	model.SidecarProxy: sets.New(
    		kind.Gateway,
    		kind.WorkloadGroup,
    		kind.WorkloadEntry,
    		kind.Secret,
    		kind.ProxyConfig,
    		kind.DNSName,
    
    		kind.KubernetesGateway,
    	),
    	model.Waypoint: sets.New(
    		kind.Gateway,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top