Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for HTTPRoute (0.1 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-route-attachment/httproute.yaml

    #$ Used in:
    #$ - site-src/concepts/api-overview.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: my-route
      namespace: gateway-api-example-ns2
    spec:
      parentRefs:
      - kind: Gateway
        name: foo-gateway
        namespace: gateway-api-example-ns1
      rules:
      - backendRefs:
        - name: foo-svc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 339 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/simple-gateway/httproute.yaml

    #$ Used in:
    #$ - site-src/guides/simple-gateway.md
    #$ - site-src/blog/2021/introducing-v1beta1.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: foo
    spec:
      parentRefs:
      - name: prod-web
      rules:
      - backendRefs:
        - name: foo-svc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 284 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/httproute.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: my-app
    spec:
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /mypath
        backendRefs:
        - name: my-service-1
          port: 8080
      - matches:
        - path:
            type: PathPrefix
            value: /mypath-012
        backendRefs:
        - name: my-service-2
          port: 8080
      - matches:
        - path:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 510 bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/httproute.go

    Zhonghu Xu <******@****.***> 1711645742 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-referencegrant.yaml

    #$ Used in:
    #$ - geps/gep-1748.md
    kind: HTTPRoute
    apiVersion: gateway.networking.k8s.io/v1beta1
    metadata:
      name: foo
      namespace: foo
    spec:
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /bar
        backendRefs:
        - group: multicluster.x-k8s.io
          kind: ServiceImport
          name: bar
          namespace: bar
    ---
    kind: ReferenceGrant
    apiVersion: gateway.networking.k8s.io/v1beta1
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 598 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect-rewrite/httproute-rewritepath.yaml

    #$ Used in:
    #$ - site-src/api-types/httproute.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-filter-rewrite
    spec:
      hostnames:
        - rewrite.example
      rules:
        - filters:
            - type: URLRewrite
              urlRewrite:
                hostname: elsewhere.example
                path:
                  type: ReplacePrefixMatch
                  replacePrefixMatch: /fennel
          backendRefs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 488 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect-rewrite/httproute-rewrite.yaml

    #$ Used in:
    #$ - site-src/api-types/httproute.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-filter-rewrite
    spec:
      hostnames:
        - rewrite.example
      rules:
        - filters:
            - type: URLRewrite
              urlRewrite:
                hostname: elsewhere.example
          backendRefs:
            - name: example-svc
              weight: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 389 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-gamma.yaml

    #$ Used in:
    #$ - geps/gep-1748.md
    kind: HTTPRoute
    apiVersion: gateway.networking.k8s.io/v1beta1
    metadata:
      name: store
    spec:
      parentRefs:
      - group: multicluster.x-k8s.io
        kind: ServiceImport
        name: store
      rules:
      - matches:
        - path:
            value: "/cart"
        backendRefs:
        - group: multicluster.x-k8s.io
          kind: ServiceImport
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 365 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-hybrid.yaml

    #$ Used in:
    #$ - geps/gep-1748.md
    kind: HTTPRoute
    apiVersion: gateway.networking.k8s.io/v1beta1
    metadata:
      name: store
    spec:
      parentRefs:
      - name: external-http
      rules:
      - backendRefs:
        - kind: Service
          name: store
          port: 8080
          weight: 90
        - group: multicluster.x-k8s.io
          kind: ServiceImport
          name: store-global
          port: 8080
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 382 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-location.yaml

    #$ Used in:
    #$ - geps/gep-1748.md
    kind: HTTPRoute
    apiVersion: gateway.networking.k8s.io/v1beta1
    metadata:
      name: store
    spec:
      parentRefs:
      - name: external-http
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /west
        backendRefs:
        - group: multicluster.x-k8s.io
          kind: ServiceImport
          name: store-west
          port: 8080
      - matches:
        - path:
            type: PathPrefix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 664 bytes
    - Viewed (0)
Back to top