Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for waypoint (0.1 sec)

  1. istioctl/pkg/waypoint/waypoint.go

      # Delete a waypoint by name, which can obtain from istioctl waypoint list
      istioctl waypoint delete waypoint-name --namespace default
    
      # Delete several waypoints by name
      istioctl waypoint delete waypoint-name1 waypoint-name2 --namespace default
    
      # Delete all waypoints in a specific namespace
      istioctl waypoint delete --all --namespace default`,
    		Args: func(cmd *cobra.Command, args []string) error {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/workload.go

    }
    
    func waypointName(wl *ZtunnelWorkload, services []*ZtunnelService) string {
    	if wl.Waypoint == nil {
    		return "None"
    	}
    
    	for _, svc := range services {
    		if fmt.Sprintf("%s/%s", svc.Namespace, svc.Hostname) == wl.Waypoint.Destination {
    			return svc.Name
    		}
    		for _, addr := range svc.Addresses {
    			if addr == wl.Waypoint.Destination {
    				return svc.Name
    			}
    		}
    	}
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jul 24 09:07:30 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/istio-mesh-dashboard.gen.json

                      "type": "prometheus",
                      "uid": "$datasource"
                   },
                   "expr": "sum (rate(istio_requests_total{reporter=~\"source|waypoint\",response_code!~\"5..\"}[$__rate_interval])) / sum (rate(istio_requests_total{reporter=~\"source|waypoint\"}[$__rate_interval]))"
                }
             ],
             "title": "Success Rate",
             "type": "stat"
          },
          {
             "datasource": {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. 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: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jul 24 09:07:30 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/queries.libsonnet

            round(sum(rate(labels('istio_requests_total', { reporter: '~source|waypoint' }))))
          ),
    
          globalRequestSuccessRate: self.rawQuery(
            sum(rate(labels('istio_requests_total', { reporter: '~source|waypoint', response_code: '!~5..' }))) + ' / ' +
            sum(rate(labels('istio_requests_total', { reporter: '~source|waypoint' })))
          ),
    
          globalRequest4xx: self.rawQuery(
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 10.3K 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: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. architecture/ambient/peer-authentication.md

    a `STRICT` `PeerAuthentication`, unauthenticated traffic will be rejected before it reaches the Waypoint proxy. If the effective policy is `PERMISSIVE` (the default), the ztunnel will open a vanilla TLS HBONE tunnel (NOTE: this is not mTLS) to the Waypoint proxy and forward the traffic over that connection without presenting a client certificate. Therefore, it is absolutely critical that the waypoint proxy not assume any identity from incoming connections, even if the ztunnel is hairpinning. In other...
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 01 20:04:20 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. architecture/ambient/ztunnel.md

    If the target destination has a waypoint, we enforce that the request is coming from that waypoint. Otherwise, the request is rejected.
    If there is no waypoint, ztunnel will enforce RBAC policies against the request.
    
    If all checks pass, ztunnel will open a connection to the target. This will spoof the source IP (from `Forwarded` for waypoints, or the incoming IP otherwise).
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jul 17 23:10:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. istioctl/pkg/waypoint/testdata/waypoint/all-gateway

    NAMESPACE     NAME         REVISION     PROGRAMMED
    default       waypoint     default      True
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Apr 16 21:30:40 UTC 2024
    - 141 bytes
    - Viewed (0)
  10. istioctl/pkg/writer/ztunnel/configdump/api.go

    	Subzone string `json:"subzone,omitempty"`
    }
    
    type ZtunnelWorkload struct {
    	UID                   string            `json:"uid"`
    	WorkloadIPs           []string          `json:"workloadIps"`
    	Waypoint              *GatewayAddress   `json:"waypoint,omitempty"`
    	NetworkGateway        *GatewayAddress   `json:"networkGateway,omitempty"`
    	Protocol              string            `json:"protocol"`
    	Name                  string            `json:"name"`
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Jul 30 17:26:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top