Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for waypoint (0.21 sec)

  1. istioctl/pkg/waypoint/waypoint.go

      istioctl x waypoint delete
    
      # Delete a waypoint by name, which can obtain from istioctl x waypoint list
      istioctl x waypoint delete waypoint-name --namespace default
    
      # Delete several waypoints by name
      istioctl x waypoint delete waypoint-name1 waypoint-name2 --namespace default
    
      # Delete all waypoints in a specific namespace
      istioctl x waypoint delete --all --namespace default`,
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:40 GMT 2024
    - 15K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

            {{- else }}
            image: "{{ .ProxyImage }}"
            {{- end }}
            {{with .Values.global.imagePullPolicy }}imagePullPolicy: "{{.}}"{{end}}
            args:
            - proxy
            - waypoint
            - --domain
            - $(POD_NAMESPACE).svc.{{ .Values.global.proxy.clusterDomain }}
            - --serviceCluster
            - {{.ServiceAccount}}.$(POD_NAMESPACE)
            - --proxyLogLevel
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  3. istioctl/pkg/waypoint/waypoint_test.go

    		},
    		Status: gateway.GatewayStatus{
    			Conditions: conditions,
    		},
    	}
    }
    
    func makeGatewayWithRevision(name, namespace string, programmed, isWaypoint bool, rev string) *gateway.Gateway {
    	gw := makeGateway(name, namespace, programmed, isWaypoint)
    	if gw.Labels == nil {
    		gw.Labels = make(map[string]string)
    	}
    	gw.Labels[label.IoIstioRev.Name] = rev
    	return gw
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 04 15:53:09 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/ztunnel/configdump/workload.go

    	if wl.Waypoint == nil {
    		return "None"
    	}
    
    	if svc, ok := services[wl.Waypoint.Destination]; ok {
    		return svc.Name
    	}
    
    	return "NA" // Shouldn't normally reach here
    }
    
    func serviceWaypointName(svc *ZtunnelService, services map[string]*ZtunnelService) string {
    	if svc.Waypoint == nil {
    		return "None"
    	}
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 21:30:30 GMT 2024
    - 4K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/ztunnel/configdump/api.go

    	Zone    string `json:"zone,omitempty"`
    	Subzone string `json:"subzone,omitempty"`
    }
    
    type ZtunnelWorkload struct {
    	WorkloadIPs       []string  `json:"workloadIps"`
    	Waypoint          *Waypoint `json:"waypoint"`
    	Protocol          string    `json:"protocol"`
    	Name              string    `json:"name"`
    	Namespace         string    `json:"namespace"`
    	ServiceAccount    string    `json:"serviceAccount"`
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 15:39:28 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  6. 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...
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Aug 09 22:09:18 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  7. 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",
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 33.1K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml

          grpc-agent: |
    {{ .Files.Get "files/grpc-agent.yaml" | trim | indent 8 }}
    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "waypoint") }}
          waypoint: |
    {{ .Files.Get "files/waypoint.yaml" | trim | indent 8 }}
    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "kube-gateway") }}
          kube-gateway: |
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 21 03:10:21 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  9. 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
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 21:30:30 GMT 2024
    - 4K bytes
    - Viewed (0)
  10. 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).
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Sep 13 02:17:30 GMT 2023
    - 16.6K bytes
    - Viewed (0)
Back to top