Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for ParentRefs (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-routing/gateway.yaml

      listeners:
      - name: http
        protocol: HTTP
        port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: example-route
    spec:
      parentRefs:
      - name: example-gateway
      hostnames:
      - "example.com"
      rules:
      - backendRefs:
        - name: example-svc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 491 bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/grpc.yaml

          namespaces:
            from: All
          kinds:
          - kind: GRPCRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: GRPCRoute
    metadata:
      name: grpc
      namespace: default
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      hostnames: ["first.domain.example", "another.domain.example"]
      rules:
      - matches:
        - method:
            service: "foo"
          headers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:50:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/httproute-portless-backend.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: portless-backend
    spec:
      parentRefs:
      - name: prod-web
      rules:
      - backendRefs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 178 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/httproute-portless-service.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: portless-service
    spec:
      parentRefs:
      - name: prod-web
      rules:
      - backendRefs:
        - name: foo
          kind: Service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 214 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-simple.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:
        - group: multicluster.x-k8s.io
          kind: ServiceImport
          name: store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 286 bytes
    - Viewed (0)
  6. samples/tcp-echo/gateway-api/tcp-echo-20-v2.yaml

    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: tcp-echo
    spec:
      parentRefs:
      - name: tcp-echo-gateway
        sectionName: tcp-31400
      rules:
      - backendRefs:
        - name: tcp-echo-v1
          port: 9000
          weight: 80
        - name: tcp-echo-v2
          port: 9000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 18 15:09:04 UTC 2022
    - 305 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/cross-namespace-routing/store-route.yaml

    #$ Used in:
    #$ - site-src/guides/multiple-ns.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: store
      namespace: store-ns
    spec:
      parentRefs:
      - name: shared-gateway
        namespace: infra-ns
      rules:
      - matches:
        - path:
            value: /store
        backendRefs:
        - name: store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 333 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect-path.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-filter-1
      namespace: gateway-api-example-ns1
    spec:
      parentRefs:
      - name: my-filter-gateway
        sectionName: http
      hostnames:
      - my-filter.example.com
      rules:
      - filters:
        - type: RequestRedirect
          requestRedirect:
            path:
              type: ReplaceFullPath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 391 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-request-header-set.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: /edit-a-request-header
          filters:
            - type: RequestHeaderModifier
              requestHeaderModifier:
                set:
                  - name: my-header-name
                    value: my-new-header-value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 492 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/default-match-http.yaml

    # least one valid match.
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: default-match-route
      labels:
        app: default-match
    spec:
      parentRefs:
      - name: default-match-gw
      hostnames:
      - default-match.com
      rules:
      - matches:
        - headers:
          - type: Exact
            name: magic
            value: default-match
        backendRefs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top