Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 188 for HTTPRoute (0.14 sec)

  1. 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)
  2. pkg/config/validation/virtualservice_test.go

    	testCases := []struct {
    		name  string
    		route *networking.HTTPRoute
    		valid bool
    	}{
    		{
    			name: "simple",
    			route: &networking.HTTPRoute{
    				Delegate: &networking.Delegate{
    					Name:      "test",
    					Namespace: "test",
    				},
    			},
    			valid: true,
    		},
    		{
    			name: "route and delegate conflict",
    			route: &networking.HTTPRoute{
    				Route: []*networking.HTTPRouteDestination{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. samples/bookinfo/gateway-api/route-all-v1.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: reviews
    spec:
      parentRefs:
      - group: ""
        kind: Service
        name: reviews
        port: 9080
      rules:
      - backendRefs:
        - name: reviews-v1
          port: 9080
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: productpage
    spec:
      parentRefs:
      - group: ""
        kind: Service
        name: productpage
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 22:57:42 UTC 2023
    - 984 bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/http.status.yaml.golden

          status: "True"
          type: ResolvedRefs
        name: default
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
        - group: gateway.networking.k8s.io
          kind: GRPCRoute
    ---
    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
    - 6.7K bytes
    - Viewed (0)
  5. pilot/pkg/config/aggregate/config_test.go

    }
    
    func TestAggregateStoreList(t *testing.T) {
    	g := NewWithT(t)
    
    	store1 := memory.Make(collection.SchemasFor(collections.HTTPRoute))
    	store2 := memory.Make(collection.SchemasFor(collections.HTTPRoute))
    
    	if _, err := store1.Create(config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.HTTPRoute,
    			Name:             "other",
    		},
    	}); err != nil {
    		t.Fatal(err)
    	}
    	if _, err := store2.Create(config.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route_cache_test.go

    								constants.InternalParentNames:    "HTTPRoute/foo.default,HTTPRoute/bar.default",
    							},
    						},
    					},
    				},
    			},
    			want: []model.ConfigHash{
    				model.ConfigKey{
    					Kind:      kind.HTTPRoute,
    					Name:      "foo",
    					Namespace: "default",
    				}.HashCode(),
    				model.ConfigKey{
    					Kind:      kind.HTTPRoute,
    					Name:      "bar",
    					Namespace: "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/deprecation/deprecation.go

    	vs := r.Message.(*v1alpha3.VirtualService)
    
    	for _, httpRoute := range vs.Http {
    		if httpRoute.Fault != nil {
    			if httpRoute.Fault.Delay != nil {
    				// nolint: staticcheck
    				if httpRoute.Fault.Delay.Percent > 0 {
    					ctx.Report(gvk.VirtualService,
    						msg.NewDeprecated(r, replacedMessage("HTTPRoute.fault.delay.percent", "HTTPRoute.fault.delay.percentage")))
    				}
    			}
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/mesh.yaml

            from: All
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: echo
      namespace: default
    spec:
      parentRefs:
      - group: ""
        kind: Service
        name: echo
      rules:
      - backendRefs:
        - name: echo
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: dual # applies to mesh and explicit gateway
      namespace: default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/reference-policy-service.yaml

    metadata:
      name: allow-service
      namespace: service
    spec:
      from:
      - group: gateway.networking.k8s.io
        kind: HTTPRoute
        namespace: istio-system
      to:
      - group: ""
        kind: Service
        name: my-svc
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: istio-system
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/http.yaml.golden

            port:
              number: 80
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: HTTPRoute/mirror.default,HTTPRoute/redirect.default,HTTPRoute/rewrite.default
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: mirror-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top