Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 169 for path_prefix (0.16 sec)

  1. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml

        namespace: istio-system
      - group: ""
        kind: Service
        name: a-example
      hostnames: ["a.domain.example"]
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /foo/bar
        - path:
            type: PathPrefix
            value: /bar
        backendRefs:
        - name: svc2
          port: 80
      - matches:
        - path:
            type: Exact
            value: /baz
          headers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/benchmark-httproute.yaml

      - name: gateway
        namespace: istio-system
      - kind: Mesh
        name: istio
      hostnames: ["a.domain.example"]
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /foo/bar
        - path:
            type: PathPrefix
            value: /bar
        backendRefs:
        - name: svc2
          port: 80
      - matches:
        - path:
            type: Exact
            value: /baz
          headers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/zero.yaml

        namespace: istio-system
      hostnames: ["first.domain.example"]
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /get
        backendRefs:
          - name: httpbin-zero
            port: 8080
            weight: 0
      - matches:
        - path:
            type: PathPrefix
            value: /weighted-100
        backendRefs:
        - filters:
          - requestHeaderModifier:
              add:
              - name: foo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/weighted.yaml

      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /get
        backendRefs:
          - name: httpbin
            port: 80
            weight: 2
          - name: httpbin-other
            port: 8080
            weight: 3
          - name: httpbin-zero
            port: 8080
            weight: 0
      - matches:
        - path:
            type: PathPrefix
            value: /weighted-100
        backendRefs:
        - filters:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/testing/utils.go

    import (
    	"os"
    	"path"
    )
    
    // PathPrefix returns the prefix set via the ETCD_PREFIX environment variable (if any).
    func PathPrefix() string {
    	pref := os.Getenv("ETCD_PREFIX")
    	if pref == "" {
    		pref = "registry"
    	}
    	return path.Join("/", pref)
    }
    
    // AddPrefix adds the ETCD_PREFIX to the provided key
    func AddPrefix(in string) string {
    	return path.Join(PathPrefix(), in)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 01 13:02:49 UTC 2019
    - 962 bytes
    - Viewed (0)
  6. internal/config/etcd/help.go

    			Description: `comma separated list of etcd endpoints` + defaultHelpPostfix(Endpoints),
    			Type:        "csv",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         PathPrefix,
    			Description: `namespace prefix to isolate tenants` + defaultHelpPostfix(PathPrefix),
    			Optional:    true,
    			Type:        "path",
    		},
    		config.HelpKV{
    			Key:         CoreDNSPath,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 27 03:11:37 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-location.yaml

      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
            value: /east
        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
    - 664 bytes
    - Viewed (0)
  8. samples/bookinfo/gateway-api/bookinfo-gateway.yaml

      rules:
      - matches:
        - path:
            type: Exact
            value: /productpage
        - path:
            type: PathPrefix
            value: /static
        - path:
            type: Exact
            value: /login
        - path:
            type: Exact
            value: /logout
        - path:
            type: PathPrefix
            value: /api/v1/products
        backendRefs:
        - name: productpage
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 03 18:46:50 UTC 2022
    - 761 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-path-specialchars.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-path-specialchars
    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
    - 190 bytes
    - Viewed (0)
  10. samples/ambient-argo/application/ingress-gateway.yaml

      rules:
      - matches:
        - path:
            type: Exact
            value: /productpage
        - path:
            type: PathPrefix
            value: /static
        - path:
            type: Exact
            value: /login
        - path:
            type: Exact
            value: /logout
        - path:
            type: PathPrefix
            value: /api/v1/products
        backendRefs:
        - name: productpage
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 760 bytes
    - Viewed (0)
Back to top