Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for Waypoint (0.2 sec)

  1. istioctl/pkg/waypoint/waypoint.go

    		Short: "Delete a waypoint configuration",
    		Long:  "Delete a waypoint configuration from the cluster",
    		Example: `  # Delete a waypoint from the default namespace
      istioctl waypoint delete
    
      # 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		// o was reliant on the namespace waypoint and then get's a use-waypoint label added before that gateway is ready.
    		// goes from having a waypoint to having no waypoint and then eventually gets a waypoint back
    		return krt.FetchOne[Waypoint](ctx, Waypoints, krt.FilterKey(wp.ResourceName()))
    	}
    
    	// try fetching the namespace-defined waypoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		if waypoint != nil {
    			n := implicitWaypointPolicyName(waypoint)
    			if n != "" {
    				return []string{waypoint.Namespace + "/" + n}
    			}
    		}
    		return nil
    	}
    	waypoints := krt.Fetch(ctx, Waypoints, krt.FilterKeys(serviceWaypointKeys...))
    	if waypoint != nil {
    		waypoints = append(waypoints, *waypoint)
    	}
    
    	return slices.MapFilter(waypoints, func(w Waypoint) *string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_workloadentry_test.go

    		}, nil, true, corev1.PodRunning)
    	s.assertAddresses(t, "", "name1", "name2", "name3", "waypoint-ns", "waypoint-ns-pod", "waypoint2-ns-pod")
    	// all these workloads already have a waypoint, only expect the new waypoint pod
    	s.assertEvent(t, s.podXdsName("waypoint2-ns-pod"))
    
    	// Waypoints do not have waypoints
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.200"))[0].Address.GetWorkload().GetWaypoint(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. tests/integration/ambient/waypoint_test.go

    	setWaypointInternal(t, se, namespace, waypoint, false)
    }
    
    func setWaypointInternal(t framework.TestContext, name, ns string, waypoint string, service bool) {
    	for _, c := range t.Clusters() {
    		setWaypoint := func(waypoint string) error {
    			if waypoint == "" {
    				waypoint = "null"
    			} else {
    				waypoint = fmt.Sprintf("%q", waypoint)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  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