Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 188 for HTTPRoute (0.19 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-method.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-method
    spec:
      rules:
      - matches:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 145 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-filter-empty.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-filter-empty
    spec:
      rules:
      - filters:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 163 bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/delegated.yaml.golden

        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: HTTPRoute/http.apple
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: http-0-istio-autogenerated-k8s-gateway
      namespace: apple
    spec:
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. samples/helloworld/gateway-api/helloworld-gateway.yaml

    spec:
      gatewayClassName: istio
      listeners:
      - name: http
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Same
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: helloworld
    spec:
      parentRefs:
      - name: helloworld-gateway
      rules:
      - matches:
        - path:
            type: Exact
            value: /hello
        backendRefs:
        - name: helloworld
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 03 18:46:50 UTC 2022
    - 522 bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/ingress/conversion.go

    					httpMatch.Uri = createFallbackStringMatch(httpPath.Path)
    				}
    			} else {
    				httpMatch.Uri = createFallbackStringMatch(httpPath.Path)
    			}
    
    			httpRoute := ingressBackendToHTTPRoute(&httpPath.Backend, ingress.Namespace, domainSuffix, services)
    			if httpRoute == nil {
    				log.Infof("invalid ingress rule %s:%s for host %q, no backend defined for path", ingress.Namespace, ingress.Name, rule.Host)
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/controller.go

    		log.Debugf("reconcile complete in %v", time.Since(t0))
    	}()
    	gatewayClass := c.cache.List(gvk.GatewayClass, metav1.NamespaceAll)
    	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)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-header-name.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-header-name
    spec:
      rules:
      - matches:
        - headers:
          - type: Exact
            name: magic/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 203 bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/zero.status.yaml.golden

          message: No errors found
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        name: default
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
        - group: gateway.networking.k8s.io
          kind: GRPCRoute
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-path-alphanum-specialchars-mix.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-path-alphanum-specialchars-mix
    spec:
      rules:
      - matches:
        - path:
            type: PathPrefix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 212 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-request-header-remove.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: header-http-echo
    spec:
      parentRefs:
        - name: acme-gw
      rules:
        - matches:
            - path:
                type: PathPrefix
                value: /remove-a-request-header
          filters:
            - type: RequestHeaderModifier
              requestHeaderModifier:
                remove:
                  - x-request-id
          backendRefs:
            - name: echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 446 bytes
    - Viewed (0)
Back to top