Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 138 for Waypoint (0.96 sec)

  1. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	if features.EnableAmbientWaypoints {
    		m[constants.ManagedGatewayMeshController] = classInfo{
    			controller:         constants.ManagedGatewayMeshController,
    			description:        "The default Istio waypoint GatewayClass",
    			templates:          "waypoint",
    			disableNameSuffix:  true,
    			defaultServiceType: corev1.ServiceTypeClusterIP,
    			addressType:        gateway.IPAddressType,
    		}
    	}
    	return m
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/traffic.go

    	RunCase("gateway", gatewayCases)
    	RunCase("autopassthrough", autoPassthroughCases)
    	RunSkipAmbient("loop", trafficLoopCases, "does not error (waypoint -> waypoint)")
    	RunSkipAmbient("tls-origination", tlsOriginationCases, "not workload agnostic")
    	RunSkipAmbient("instanceip", instanceIPTests, "not supported")
    	RunCase("services", serviceCases)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/common/deployment/namespace.go

    	VMSvc            = "vm"
    	HeadlessSvc      = "headless"
    	StatefulSetSvc   = "statefulset"
    	ProxylessGRPCSvc = "proxyless-grpc"
    	NakedSvc         = "naked"
    	SotwSvc          = "sotw"
    	WaypointSvc      = "waypoint"
    	CapturedSvc      = "captured"
    )
    
    // EchoNamespace contains the echo instances for a single namespace.
    type EchoNamespace struct {
    	// Namespace where the services are deployed.
    	Namespace namespace.Instance
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. tests/integration/ambient/gateway_conformance_test.go

    				Prefix: "gateway-conformance-infra",
    				Inject: false,
    			})
    			if err != nil {
    				t.Fatal(err)
    			}
    			ns.RemoveLabel(constants.DataplaneModeLabel)
    
    			// create a waypoint for mesh conformance
    			meshNS := namespace.Static("gateway-conformance-mesh")
    			ambientComponent.NewWaypointProxyOrFail(ctx, meshNS, "namespace")
    			for _, k := range ctx.AllClusters() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_builder.go

    		node: node,
    		push: push,
    	}
    	builder.authnBuilder = authn.NewBuilder(push, node)
    	builder.authzBuilder = authz.NewBuilder(authz.Local, push, node, node.Type == model.Waypoint)
    	builder.authzCustomBuilder = authz.NewBuilder(authz.Custom, push, node, node.Type == model.Waypoint)
    	return builder
    }
    
    func (lb *ListenerBuilder) appendSidecarInboundListeners() *ListenerBuilder {
    	lb.inboundListeners = lb.buildInboundListeners()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top