Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 138 for Waypoint (0.27 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/helpers.go

    	ip, _ := netip.AddrFromSlice(b) // Address only comes from objects we create, so it must be valid
    	return ip
    }
    
    func (a index) getWaypointAddress(w *Waypoint) *workloadapi.GatewayAddress {
    	// probably overly cautious... I don't think the ambient index impl counts something with zero addresses as waypoint
    	if w != nil && len(w.Addresses) >= 1 {
    		return &workloadapi.GatewayAddress{
    			Destination: &workloadapi.GatewayAddress_Address{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 22 20:35:23 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. samples/ambient-argo/README.md

    | ------------------- |:--------------------------:| :----------------:|
    | **Cluster-Scoped**  | CRDs + validation          | CNI<br>ztunnel    |
    | **Workload-Scoped** | istiod<br>tags + revisions |  waypoint (envoy) |
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/services_test.go

    		},
    	}
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			mock := krttest.NewMock(t, tt.inputs)
    			a := newAmbientUnitTest()
    			builder := a.serviceEntryServiceBuilder(
    				krttest.GetMockCollection[Waypoint](mock),
    				krttest.GetMockCollection[*v1.Namespace](mock),
    			)
    			wrapper := builder(krt.TestingDummyContext{}, tt.se)
    			res := slices.Map(wrapper, func(e model.ServiceInfo) *workloadapi.Service {
    				return e.Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    		"kube-gateway": file.AsStringOrFail(t, filepath.Join(env.IstioSrc, "manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml")),
    		"waypoint":     file.AsStringOrFail(t, filepath.Join(env.IstioSrc, "manifests/charts/istio-control/istio-discovery/files/waypoint.yaml")),
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    	injConfig := func() inject.WebhookConfig {
    		return inject.WebhookConfig{
    			Templates:  tmpl,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.pb.go

    	// Waypoint is the waypoint proxy for this service. When set, all incoming requests must go
    	// through the waypoint.
    	Waypoint *GatewayAddress `protobuf:"bytes,7,opt,name=waypoint,proto3" json:"waypoint,omitempty"`
    	// Load balancing policy for selecting endpoints.
    	// Note: this applies only to connecting directly to the workload; when waypoints are used, the waypoint's load_balancing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  6. istioctl/cmd/root.go

    	"istio.io/istio/istioctl/pkg/tag"
    	"istio.io/istio/istioctl/pkg/util"
    	"istio.io/istio/istioctl/pkg/validate"
    	"istio.io/istio/istioctl/pkg/version"
    	"istio.io/istio/istioctl/pkg/wait"
    	"istio.io/istio/istioctl/pkg/waypoint"
    	"istio.io/istio/istioctl/pkg/workload"
    	"istio.io/istio/istioctl/pkg/ztunnelconfig"
    	"istio.io/istio/operator/cmd/mesh"
    	"istio.io/istio/pkg/cmd"
    	"istio.io/istio/pkg/collateral"
    	"istio.io/istio/pkg/config/constants"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. pilot/pkg/model/context.go

    func (node *Proxy) IsWaypointProxy() bool {
    	return node.Type == Waypoint
    }
    
    // IsZTunnel returns true if the proxy is acting as a ztunnel in an ambient mesh.
    func (node *Proxy) IsZTunnel() bool {
    	return node.Type == Ztunnel
    }
    
    // IsAmbient returns true if the proxy is acting as either a ztunnel or a waypoint proxy in an ambient mesh.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  8. pilot/pkg/networking/core/listener_waypoint.go

    							HeadersToAdd: headers,
    						},
    					}),
    				},
    			}},
    		}},
    	}
    	return l
    }
    
    // buildWaypointHTTPFilters augments the common chain of Waypoint-bound HTTP filters.
    // Authn/authz filters are pre-pended. Telemetry filters are appended.
    func (lb *ListenerBuilder) buildWaypointHTTPFilters(svc *model.Service) (pre []*hcm.HttpFilter, post []*hcm.HttpFilter) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    				GetMeshConfig(mock),
    				krttest.GetMockCollection[model.WorkloadAuthorization](mock),
    				krttest.GetMockCollection[*securityclient.PeerAuthentication](mock),
    				krttest.GetMockCollection[Waypoint](mock),
    				WorkloadServices,
    				WorkloadServicesNamespaceIndex,
    				krttest.GetMockCollection[*v1.Namespace](mock),
    				krttest.GetMockCollection[*v1.Node](mock),
    			)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. 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)
Back to top