Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for Waypoint (1.07 sec)

  1. istioctl/pkg/proxyconfig/proxyconfig.go

    	listenerConfigCmd.PersistentFlags().BoolVar(&waypointProxyConfig, "waypoint", false, "Output waypoint information")
    	// Until stabilized
    	_ = listenerConfigCmd.PersistentFlags().MarkHidden("waypoint")
    	listenerConfigCmd.PersistentFlags().StringVarP(&configDumpFile, "file", "f", "",
    		"Envoy config dump JSON file")
    
    	return listenerConfigCmd
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  2. pkg/test/framework/resource/flags.go

    		"Force the use of peer metadata discovery fallback for metadata exchange")
    
    	flag.BoolVar(&settingsFromCommandLine.AmbientEverywhere, "istio.test.ambient.everywhere", settingsFromCommandLine.AmbientEverywhere,
    		"Make Waypoint proxies the default instead of sidecar proxies for all echo apps. Must be used with istio.test.ambient")
    
    	flag.BoolVar(&settingsFromCommandLine.Compatibility, "istio.test.compatibility", settingsFromCommandLine.Compatibility,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/networkfilter.go

    	includeMx bool,
    	policySvc *model.Service,
    ) []*listener.Filter {
    	authzCustomBuilder := lb.authzCustomBuilder
    	authzBuilder := lb.authzBuilder
    	if policySvc != nil {
    		useFilterState := lb.node.Type == model.Waypoint
    		authzBuilder = authz.NewBuilderForService(authz.Local, lb.push, lb.node, useFilterState, policySvc)
    		authzCustomBuilder = authz.NewBuilderForService(authz.Custom, lb.push, lb.node, useFilterState, policySvc)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry.go

    	res := make([]*hcm.HttpFilter, 0, len(metricsCfg))
    	for _, cfg := range metricsCfg {
    		switch cfg.Provider.GetProvider().(type) {
    		case *meshconfig.MeshConfig_ExtensionProvider_Prometheus:
    			if cfg.NodeType == Waypoint {
    				f := &hcm.HttpFilter{
    					Name:       xds.StatsFilterName,
    					ConfigType: &hcm.HttpFilter_TypedConfig{TypedConfig: waypointStatsConfig},
    				}
    				res = append(res, f)
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/common/deployment/echos.go

    	}
    
    	if t.Settings().Ambient {
    		if t.Settings().AmbientEverywhere {
    			for i, config := range defaultConfigs {
    				if !config.HasSidecar() && !config.IsProxylessGRPC() {
    					scopes.Framework.Infof("adding waypoint to %s", config.NamespacedName())
    					defaultConfigs[i].ServiceWaypointProxy = "shared"
    					defaultConfigs[i].WorkloadWaypointProxy = "shared"
    				}
    			}
    		} else {
    			waypointed := echo.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar.go

    }
    
    const defaultSidecar = "default-sidecar"
    
    // DefaultSidecarScopeForGateway builds a SidecarScope contains services and destinationRules for a given gateway/waypoint.
    func DefaultSidecarScopeForGateway(ps *PushContext, configNamespace string) *SidecarScope {
    	services := ps.servicesExportedToNamespace(configNamespace)
    	out := &SidecarScope{
    		Name:                    defaultSidecar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion_test.go

    		{name: "eastwest"},
    		{name: "eastwest-tlsoption"},
    		{name: "eastwest-labelport"},
    		{name: "eastwest-remote"},
    		{name: "alias"},
    		{name: "mcs"},
    		{name: "route-precedence"},
    		{name: "waypoint"},
    		{name: "isolation"},
    	}
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			input := readConfig(t, fmt.Sprintf("testdata/%s.yaml", tt.name), validator, nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/httproute.go

    ) ([]*discovery.Resource, model.XdsLogDetails) {
    	var routeConfigurations model.Resources
    
    	efw := req.Push.EnvoyFilters(node)
    	hit, miss := 0, 0
    	switch node.Type {
    	case model.SidecarProxy, model.Waypoint:
    		vHostCache := make(map[int][]*route.VirtualHost)
    		// dependent envoyfilters' key, calculate in front once to prevent calc for each route.
    		envoyfilterKeys := efw.KeysApplyingTo(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. pilot/pkg/xds/workload_test.go

    		createPod(s, "pod2", "sa", "127.0.0.2", "node")
    		expect(ads.ExpectResponse(), "Kubernetes//Pod/default/pod2")
    
    		// TODO: implement pod update; this actually cannot really be done without waypoints or VIPs
    		deletePod(s, "pod")
    		expectRemoved(ads.ExpectResponse(), "Kubernetes//Pod/default/pod")
    
    		// Create pod we are not subscribed to; due to same-node optimization this will push
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top