Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for Waypoint (0.19 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. pkg/test/framework/components/ambient/waypoint.go

    				scopes.Framework.Errorf("failed resetting waypoint for %s/%s; this will likely break other tests", ns.Name(), service)
    			}
    		})
    
    	}
    }
    
    func DeleteWaypoint(t framework.TestContext, ns namespace.Instance, waypoint string) {
    	istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    		"waypoint",
    		"delete",
    		"--namespace",
    		ns.Name(),
    		waypoint,
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/waypoint.go

    // Waypoints typically only have inbound clusters, except in cases where we have a route from
    // a service owned by the waypoint to a service not owned by the waypoint.
    // It looks at:
    // * referencedServices: all services referenced by mesh virtual services
    // * waypointServices: all services owned by this waypoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/waypoint.yaml

    kind: Gateway
    metadata:
      name: namespace
      namespace: ns
    spec:
      gatewayClassName: istio-waypoint
      listeners:
      - name: mesh
        port: 15008
        protocol: HBONE
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: invalid
      namespace: ns
    spec:
      gatewayClassName: istio-waypoint
      listeners:
      - name: mesh
        port: 1234
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 19:34:29 UTC 2023
    - 418 bytes
    - Viewed (0)
  5. samples/ambient-argo/application/reviews-waypoint.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      labels:
        istio.io/rev: rapid
      name: bookinfo-reviews
    spec:
      gatewayClassName: istio-waypoint
      listeners:
      - name: mesh
        port: 15008
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 233 bytes
    - Viewed (0)
  6. 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)
  7. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint.yaml

            service.istio.io/canonical-revision: latest
            sidecar.istio.io/inject: "false"
            topology.istio.io/network: network-1
        spec:
          containers:
          - args:
            - proxy
            - waypoint
            - --domain
            - $(POD_NAMESPACE).svc.<no value>
            - --serviceCluster
            - namespace.$(POD_NAMESPACE)
            - --proxyLogLevel
            - <nil>
            - --proxyComponentLogLevel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. tests/integration/ambient/testdata/requestauthn/waypoint-jwt.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: default-{{ .To.ServiceName }}
    spec:
      targetRefs:
      - kind: Gateway
        group: gateway.networking.k8s.io
        name: waypoint
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
      - issuer: "******@****.***"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. samples/ambient-argo/application/details-waypoint.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      labels:
        istio.io/rev: stable
      name: bookinfo-details
    spec:
      gatewayClassName: istio-waypoint
      listeners:
      - name: mesh
        port: 15008
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 234 bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/waypoint.status.yaml.golden

    John Howard <******@****.***> 1713303040 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 21:30:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top