Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 144 for Waypoint (0.17 sec)

  1. pilot/pkg/networking/core/cluster_waypoint.go

    					Value: model.HBoneInboundListenPort,
    				},
    				// Used to override destination pods with waypoints.
    				MetadataKey: &metadata.MetadataKey{
    					Key: util.OriginalDstMetadataKey,
    					Path: []*metadata.MetadataKey_PathSegment{{
    						Segment: &metadata.MetadataKey_PathSegment_Key{
    							Key: "waypoint",
    						},
    					}},
    				},
    			},
    		},
    		TransportSocket: &core.TransportSocket{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    		clusters = inboundPatcher.conditionallyAppend(clusters, nil, cb.buildInboundPassthroughCluster())
    		clusters = append(clusters, inboundPatcher.insertedClusters()...)
    	case model.Waypoint:
    		_, wps := findWaypointResources(proxy, req.Push)
    		// Waypoint proxies do not need outbound clusters in most cases, unless we have a route pointing to something
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. pilot/pkg/model/service.go

    	PortNames map[int32]ServicePortName
    	// Source is the type that introduced this service.
    	Source kind.Kind
    	// Waypoint that clients should use when addressing traffic to this Service.
    	Waypoint string
    }
    
    func (i ServiceInfo) NamespacedName() types.NamespacedName {
    	return types.NamespacedName{Name: i.Name, Namespace: i.Namespace}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. istioctl/pkg/dashboard/dashboard.go

      # Open dashboard for the ztunnel-bwh89.istio-system pod
      istioctl dashboard proxy ztunnel-bwh89.istio-system
    
      # Open dashboard for a waypoint pod
      istioctl dashboard proxy namespace-istio-waypoint-869b56b69c-7khz4
    
      # with short syntax
      istioctl dash proxy ztunnel-bwh89.istio-system
      istioctl d proxy ztunnel-bwh89.istio-system
    `,
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  5. pkg/bootstrap/config.go

    	discHost := strings.Split(cfg.Metadata.ProxyConfig.DiscoveryAddress, ":")[0]
    
    	xdsType := "GRPC"
    	if features.DeltaXds {
    		xdsType = "DELTA_GRPC"
    	}
    
    	// Waypoint overrides
    	metadataDiscovery := cfg.Metadata.MetadataDiscovery
    	if strings.HasPrefix(cfg.ID, "waypoint~") {
    		xdsType = "DELTA_GRPC"
    		metadataDiscovery = true
    	}
    
    	opts = append(opts,
    		option.NodeID(cfg.ID),
    		option.NodeType(cfg.ID),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/authentication_test.go

    							Mode: securityBeta.PeerAuthentication_MutualTLS_UNSET,
    						},
    					},
    				},
    			},
    			wantNamespaceMutualTLS: MTLSStrict,
    		},
    		{
    			name:              "waypoint targetRef foo namespace",
    			workloadNamespace: "foo",
    			isWaypoint:        true,
    			workloadLabels: labels.Instance{
    				constants.GatewayNameLabel: "my-gateway",
    			},
    			wantRequestAuthn: []*config.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/memory/discovery.go

    	return nil
    }
    
    func (sd *ServiceDiscovery) ServicesForWaypoint(model.WaypointKey) []model.ServiceInfo {
    	return nil
    }
    
    func (sd *ServiceDiscovery) Waypoint(string, string) []netip.Addr {
    	return nil
    }
    
    func (sd *ServiceDiscovery) WorkloadsForWaypoint(model.WaypointKey) []model.WorkloadInfo {
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top