Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for Waypoint (0.36 sec)

  1. pkg/test/framework/components/echo/config.go

    	IPFamilyPolicy string
    
    	DualStack bool
    
    	// ServiceWaypointProxy specifies if this workload should have an associated Waypoint for service-addressed traffic
    	ServiceWaypointProxy string
    
    	// WorkloadWaypointProxy specifies if this workload should have an associated Waypoint for workload-addressed traffic
    	WorkloadWaypointProxy string
    }
    
    // Getter for a custom echo deployment
    type ConfigGetter func() []Config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top