Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 139 for Waypoint (0.11 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/testdata/workloadsummary.txt

    bookinfo           bookinfo-productpage-istio-waypoint-5cdd6745d5-rc2gg 10.244.2.59 ambient-worker2       None                                TCP
    bookinfo           details-v1-698d88b-dqrbr                             10.244.2.51 ambient-worker2       namespace-istio-waypoint            HBONE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 21:30:30 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. istioctl/pkg/waypoint/testdata/waypoint/all-gateway

    NAMESPACE     NAME         REVISION     PROGRAMMED
    default       waypoint     default      True
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 21:30:40 UTC 2024
    - 141 bytes
    - Viewed (0)
  3. tests/integration/ambient/main_test.go

    	Namespace         namespace.Instance
    	ExternalNamespace namespace.Instance
    
    	// AllWaypoint is a waypoint for all types
    	AllWaypoint echo.Instances
    	// WorkloadAddressedWaypoint is a workload only waypoint
    	WorkloadAddressedWaypoint echo.Instances
    	// ServiceAddressedWaypoint is a serviceonly waypoint
    	ServiceAddressedWaypoint echo.Instances
    	// Captured echo service
    	Captured echo.Instances
    	// Uncaptured echo Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pkg/config/constants/constants.go

    	// AmbientUseWaypointLabelLabel is the label used to specify which waypoint should be used for a given pod, service, etc...
    	AmbientUseWaypointLabel = "istio.io/use-waypoint"
    	// AmbientWaypointForTrafficTypeLabel is the label used to specify which traffic is allowed through the Waypoint.
    	// This label is applied to the Waypoint. Valid traffic types are "service", "workload", "all", and "none".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. releasenotes/notes/50221.yaml

    kind: feature
    area: istioctl
    issue:
      - 49915
      - 50173
    releaseNotes:
    - |
      **Added** Allow user to name their waypoint through istioctl via --name flag on the waypoint cmd.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:52 UTC 2024
    - 344 bytes
    - Viewed (0)
  6. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

          "uid": "Kubernetes//Pod/bookinfo/namespace-istio-waypoint-d94944bf6-z89g2",
          "name": "namespace-istio-waypoint-d94944bf6-z89g2",
          "namespace": "bookinfo",
          "trustDomain": "cluster.local",
          "serviceAccount": "namespace-istio-waypoint",
          "workloadName": "namespace-istio-waypoint",
          "workloadType": "deployment",
          "canonicalName": "namespace-istio-waypoint",
          "canonicalRevision": "latest",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/ztunnel/configdump/workload.go

    		return iNode < jNode
    	})
    
    	fmt.Fprintln(w, "NAMESPACE\tPOD NAME\tIP\tNODE\tWAYPOINT\tPROTOCOL")
    
    	for _, wl := range verifiedWorkloads {
    		var ip string
    		if len(wl.WorkloadIPs) > 0 {
    			ip = wl.WorkloadIPs[0]
    		}
    		waypoint := waypointName(wl, zDump.Services)
    		fmt.Fprintf(w, "%v\t%v\t%v\t%v\t%v\t%v\n",
    			wl.Namespace, wl.Name, ip, wl.Node, waypoint, wl.Protocol)
    
    	}
    	return w.Flush()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. releasenotes/notes/50132.yaml

        **Added** the ability to annotate workloads or services with `istio.io/use-waypoint` pointing to Gateways of arbitrary gateway classes.
    
        These changes allow configuring a standard `istio` gateway as a Waypoint.
        For this to work, it must be configured as a `ClusterIP` Service with
        redirection enabled. This is colloquially referred to as a "gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 659 bytes
    - Viewed (0)
  9. releasenotes/notes/47539.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 06:11:44 UTC 2023
    - 197 bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    		// Filter out waypoints.
    		if w.Labels[constants.ManagedGatewayLabel] == constants.ManagedGatewayMeshControllerLabel {
    			return nil
    		}
    		waypoint := w.Waypoint
    		if waypoint == nil {
    			return nil
    		}
    		waypointAddress := waypoint.GetAddress()
    		if waypointAddress == nil {
    			return nil
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top