Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 755 for svc5 (0.33 sec)

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

            value: /foo
          headers:
          - name: my-header
            value: some-value
            type: Exact
        backendRefs:
        - name: svc1
          port: 80
      - matches:
        - path:
            type: RegularExpression
            value: /foo((\/).*)?
        backendRefs:
        - name: svc2
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: allowed-2
    spec:
    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

            value: /foo
          headers:
          - name: my-header
            value: some-value
            type: Exact
        backendRefs:
        - name: svc1
          port: 80
      - matches:
        - path:
            type: RegularExpression
            value: /foo((\/).*)?
        backendRefs:
        - name: svc2
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: allowed-2
    spec:
    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. hack/testdata/prune/svc.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: prune-svc
      labels:
        prune-group: "true"
    spec:
      selector:
        prune-group-nomatch: "true"
      ports:
      - port: 80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 01 21:02:31 UTC 2016
    - 181 bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/controller/repairip_test.go

    		},
    		{
    			name: "reconcile IPAddresses dual stack",
    			svcs: []*v1.Service{newService("test-svc", []string{"10.0.1.1", "2001:db8::10"})},
    			ipAddresses: []*networkingv1alpha1.IPAddress{
    				newIPAddress("10.0.1.1", newService("test-svc2", []string{"10.0.1.1"})),
    				newIPAddress("2001:db8::10", newService("test-svc2", []string{"2001:db8::10"})),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  5. pkg/proxy/config/api_test.go

    		{Name: svc1.Name, Namespace: svc1.Namespace}: svc1,
    		{Name: svc2.Name, Namespace: svc2.Namespace}: svc2,
    	}
    	expectedEpsState := map[types.NamespacedName]*discoveryv1.EndpointSlice{
    		{Name: eps1.Name, Namespace: eps1.Namespace}: eps1,
    		{Name: eps2.Name, Namespace: eps2.Namespace}: eps2,
    	}
    
    	// Setup fake api client.
    	client := fake.NewSimpleClientset(svc1, svc2, eps2, eps1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. pkg/controller/endpointslicemirroring/metrics/cache_test.go

    	c.UpdateEndpointPortCache(types.NamespacedName{Namespace: "ns1", Name: "svc1"}, spCacheInefficient)
    	expectNumEndpointsAndSlices(t, c, 2, 13, 30)
    
    	c.UpdateEndpointPortCache(types.NamespacedName{Namespace: "ns1", Name: "svc2"}, spCacheEfficient)
    	expectNumEndpointsAndSlices(t, c, 4, 15, 110)
    
    	c.UpdateEndpointPortCache(types.NamespacedName{Namespace: "ns1", Name: "svc3"}, spCacheInefficient)
    	expectNumEndpointsAndSlices(t, c, 6, 28, 140)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. pkg/proxy/endpointslicecache_test.go

    			namespacedName: types.NamespacedName{Name: "svc1", Namespace: "ns1"},
    			endpointSlices: []*discovery.EndpointSlice{
    				generateEndpointSlice("svc1", "ns1", 1, 3, 999, 999, []string{}, []*int32{ptr.To[int32](80)}),
    				generateEndpointSlice("svc1", "ns1", 2, 3, 999, 999, []string{}, []*int32{ptr.To[int32](80)}),
    			},
    			expectedMap: map[ServicePortName][]*BaseEndpointInfo{
    				makeServicePortName("ns1", "svc1", "port-0", v1.ProtocolTCP): {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier_test.go

    			NodePort: int32(svcNodePort),
    		}}
    		svc.Spec.ExternalTrafficPolicy = v1.ServiceExternalTrafficPolicyLocal
    	})
    
    	svc1, svc2, invalidSvc3 := *sampleSvc, *sampleSvc, *sampleSvc
    	svc1.Name, svc1.Spec.HealthCheckNodePort = "valid-svc1", 30000
    	svc2.Name, svc2.Spec.HealthCheckNodePort = "valid-svc2", 30001
    	// make svc3 invalid by setting external traffic policy to cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_server_journal_test.go

    			}
    		})
    	}
    }
    
    func Test_validateServices(t *testing.T) {
    	var (
    		service1 = "svc1"
    		service2 = "svc2"
    		service3 = "svc.foo"
    		service4 = "svc_foo"
    		service5 = "svc@foo"
    		service6 = "svc:foo"
    		invalid1 = "svc\n"
    		invalid2 = "svc.foo\n"
    	)
    	tests := []struct {
    		name     string
    		services []string
    		wantErr  bool
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 22:27:44 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/proxier_test.go

    		NamespacedName: makeNSN("ns1", "svc1"),
    		Port:           "p80",
    		Protocol:       v1.ProtocolTCP,
    	}
    
    	makeServiceMap(proxier,
    		makeTestService(svcPortName.Namespace, svcPortName.Name, func(svc *v1.Service) {
    			svc.Spec.Type = "NodePort"
    			svc.Spec.ClusterIP = svcIP
    			svc.Spec.ExternalIPs = []string{svcExternalIPs}
    			svc.Spec.SessionAffinity = v1.ServiceAffinityClientIP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top