Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for TCPRoute (0.25 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/controller.go

    	gateway := c.cache.List(gvk.KubernetesGateway, metav1.NamespaceAll)
    	httpRoute := c.cache.List(gvk.HTTPRoute, metav1.NamespaceAll)
    	grpcRoute := c.cache.List(gvk.GRPCRoute, metav1.NamespaceAll)
    	tcpRoute := c.cache.List(gvk.TCPRoute, metav1.NamespaceAll)
    	tlsRoute := c.cache.List(gvk.TLSRoute, metav1.NamespaceAll)
    	referenceGrant := c.cache.List(gvk.ReferenceGrant, metav1.NamespaceAll)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/config/schema/gvk/resources.gen.go

    	StatefulSet                    = config.GroupVersionKind{Group: "apps", Version: "v1", Kind: "StatefulSet"}
    	TCPRoute                       = config.GroupVersionKind{Group: "gateway.networking.k8s.io", Version: "v1alpha2", Kind: "TCPRoute"}
    	TLSRoute                       = config.GroupVersionKind{Group: "gateway.networking.k8s.io", Version: "v1alpha2", Kind: "TLSRoute"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. 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)
  8. pilot/pkg/config/kube/crdclient/types.gen.go

    			Patch(context.TODO(), orig.Name, typ, patchBytes, metav1.PatchOptions{FieldManager: "pilot-discovery"})
    	case gvk.TCPRoute:
    		oldRes := &sigsk8siogatewayapiapisv1alpha2.TCPRoute{
    			ObjectMeta: origMeta,
    			Spec:       *(orig.Spec.(*sigsk8siogatewayapiapisv1alpha2.TCPRouteSpec)),
    		}
    		modRes := &sigsk8siogatewayapiapisv1alpha2.TCPRoute{
    			ObjectMeta: modMeta,
    			Spec:       *(mod.Spec.(*sigsk8siogatewayapiapisv1alpha2.TCPRouteSpec)),
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  9. pkg/config/schema/collections/collections.gen.go

    		ClusterScoped: false,
    		Synthetic:     false,
    		Builtin:       true,
    		ValidateProto: validation.EmptyValidate,
    	}.MustBuild()
    
    	TCPRoute = resource.Builder{
    		Identifier: "TCPRoute",
    		Group:      "gateway.networking.k8s.io",
    		Kind:       "TCPRoute",
    		Plural:     "tcproutes",
    		Version:    "v1alpha2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  10. 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)
Back to top