Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for tcproutes (0.16 sec)

  1. pilot/pkg/xds/cds.go

    var pushCdsGatewayConfig = func() sets.Set[kind.Kind] {
    	s := sets.New(
    		kind.VirtualService,
    		kind.Gateway,
    
    		kind.KubernetesGateway,
    		kind.HTTPRoute,
    		kind.TCPRoute,
    		kind.TLSRoute,
    		kind.GRPCRoute,
    	)
    	if features.JwksFetchMode != jwt.Istiod {
    		s.Insert(kind.RequestAuthentication)
    	}
    	return s
    }()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/model.go

    type GatewayResources struct {
    	GatewayClass   []config.Config
    	Gateway        []config.Config
    	HTTPRoute      []config.Config
    	GRPCRoute      []config.Config
    	TCPRoute       []config.Config
    	TLSRoute       []config.Config
    	ReferenceGrant []config.Config
    	ServiceEntry   []config.Config
    	// Namespaces stores all namespace in the cluster, keyed by name
    	Namespaces map[string]*corev1.Namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. samples/bookinfo/platform/kube/cleanup.sh

        kubectl delete -n "${NAMESPACE}" "$resource";
      done
    done
    
    # clean up Gateway API resources that may have been used
    if kubectl get crd gateways.gateway.networking.k8s.io >/dev/null 2>&1; then
      protos=( httproutes gateways.gateway.networking.k8s.io )
      for proto in "${protos[@]}"; do
        for resource in $(kubectl get -n "${NAMESPACE}" "$proto" -o name); do
          kubectl delete -n "${NAMESPACE}" "$resource";
        done
      done
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_test.go

    					Spec: &networking.VirtualService{
    						Gateways: []string{"testns/gateway1"},
    						Hosts:    []string{"tcp.example.com"},
    						Tcp: []*networking.TCPRoute{
    							{
    								Match: []*networking.L4MatchAttributes{
    									{
    										Port: 9443,
    									},
    								},
    								Route: []*networking.RouteDestination{
    									{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/mesh.status.yaml.golden

          type: ResolvedRefs
        controllerName: istio.io/gateway-controller
        parentRef:
          group: ""
          kind: Service
          name: echo-1
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      creationTimestamp: null
      name: tcp
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/mesh.yaml.golden

            host: echo.default.svc.domain.suffix
            port:
              number: 80
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: TCPRoute/tcp.default
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: tcp-tcp-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

          sectionName: foobar
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      creationTimestamp: null
      name: wrong-protocol
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: kind gateway.networking.k8s.io/v1alpha2/TCPRoute is not allowed
          reason: NotAllowedByListeners
          status: "False"
          type: Accepted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. tests/integration/pilot/validation_test.go

    				"gateway.networking.k8s.io/v1beta1/GatewayClass",
    				"gateway.networking.k8s.io/v1/HTTPRoute",
    				"gateway.networking.k8s.io/v1beta1/HTTPRoute",
    				"gateway.networking.k8s.io/v1alpha2/TCPRoute",
    				"gateway.networking.k8s.io/v1alpha2/TLSRoute",
    				"gateway.networking.k8s.io/v1beta1/ReferenceGrant",
    				"gateway.networking.k8s.io/v1alpha2/ReferenceGrant",
    			} {
    				recognized.Delete(gvk)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 15:19:36 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. pilot/pkg/xds/eds.go

    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.Secret,
    	kind.Telemetry,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.DNSName,
    
    	kind.KubernetesGateway,
    	kind.HTTPRoute,
    	kind.TCPRoute,
    	kind.TLSRoute,
    	kind.GRPCRoute,
    )
    
    func edsNeedsPush(updates model.XdsUpdates) bool {
    	// If none set, we will always push
    	if len(updates) == 0 {
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. samples/ambient-argo/README.md

    ### Role: Application Developer
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top