Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for tcproutes (0.74 sec)

  1. pkg/config/schema/kind/resources.gen.go

    	case ServiceAccount:
    		return "ServiceAccount"
    	case ServiceEntry:
    		return "ServiceEntry"
    	case Sidecar:
    		return "Sidecar"
    	case StatefulSet:
    		return "StatefulSet"
    	case TCPRoute:
    		return "TCPRoute"
    	case TLSRoute:
    		return "TLSRoute"
    	case Telemetry:
    		return "Telemetry"
    	case UDPRoute:
    		return "UDPRoute"
    	case ValidatingWebhookConfiguration:
    		return "ValidatingWebhookConfiguration"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/weighted.status.yaml.golden

          message: No errors found
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        name: tcp
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: TCPRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: http
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/tcp.status.yaml.golden

          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        name: default
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: TCPRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      creationTimestamp: null
      name: tcp
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/zero.status.yaml.golden

          message: No errors found
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        name: tcp
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: TCPRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: http
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml.golden

        - destination:
            host: google.com
            port:
              number: 80
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: TCPRoute/egress.default
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: egress-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
    - 3.7K bytes
    - Viewed (0)
  6. pkg/config/schema/kubetypes/resources.gen.go

    		return gvk.Sidecar, true
    	case *apiistioioapinetworkingv1alpha3.Sidecar:
    		return gvk.Sidecar, true
    	case *k8sioapiappsv1.StatefulSet:
    		return gvk.StatefulSet, true
    	case *sigsk8siogatewayapiapisv1alpha2.TCPRoute:
    		return gvk.TCPRoute, true
    	case *sigsk8siogatewayapiapisv1alpha2.TLSRoute:
    		return gvk.TLSRoute, true
    	case *istioioapitelemetryv1alpha1.Telemetry:
    		return gvk.Telemetry, true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/multi-gateway.status.yaml.golden

          message: No errors found
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        name: tcp
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: TCPRoute
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. pilot/pkg/xds/nds.go

    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.PeerAuthentication,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.MeshConfig,
    
    	kind.KubernetesGateway,
    	kind.HTTPRoute,
    	kind.TCPRoute,
    	kind.TLSRoute,
    	kind.GRPCRoute,
    )
    
    func ndsNeedsPush(req *model.PushRequest) bool {
    	if req == nil {
    		return true
    	}
    	if !req.Full {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top