Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 755 for svc5 (0.07 sec)

  1. pkg/proxy/nftables/helpers_test.go

    		add rule ip kube-proxy service-HVFWP5L3-ns5/svc5/tcp/p80 numgen random mod 1 vmap { 0 : goto endpoint-GTK6MW7G-ns5/svc5/tcp/p80__10.180.0.3/80 }
    		add rule ip kube-proxy external-HVFWP5L3-ns5/svc5/tcp/p80 jump mark-for-masquerade
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy external-HVFWP5L3-ns5/svc5/tcp/p80
    		add rule ip kube-proxy external-HVFWP5L3-ns5/svc5/tcp/p80 jump mark-for-masquerade
    		add rule ip kube-proxy external-HVFWP5L3-ns5/svc5/tcp/p80 goto service-HVFWP5L3-ns5/svc5/tcp/p80
    
    		add chain ip kube-proxy endpoint-GTK6MW7G-ns5/svc5/tcp/p80__10.180.0.3/80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    				-A KUBE-SERVICES -m comment --comment "ns2/svc2:p80 cluster IP" svc2 line 1
    				-A KUBE-SERVICES -m comment --comment ns2/svc2 svc2 line 2
    				-A KUBE-SERVICES -m comment --comment "ns2/svc2 blah" svc2 line 3
    				-A KUBE-SERVICES -m comment --comment "ns1/svc1:p80 cluster IP" svc1 line 1
    				-A KUBE-SERVICES -m comment --comment ns1/svc1 svc1 line 2
    				-A KUBE-SERVICES -m comment --comment "ns1/svc1 blah" svc1 line 3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			},
    		},
    		[]*model.Service{svc1, svc2, svc3},
    		2,
    		meshWatcher,
    		fx,
    		controller,
    	)
    
    	// permit all discovery namespaces by omitting discovery selectors (1 create event should trigger for the nsC service)
    	updateMeshConfig(
    		&meshconfig.MeshConfig{
    			DiscoverySelectors: []*meshconfig.LabelSelector{},
    		},
    		[]*model.Service{svc1, svc2, svc3, svc4},
    		1,
    		meshWatcher,
    		fx,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    		},
    		{
    			proxyNs:   "test2",
    			wantHosts: []string{"svc2", "svc3", "svc4", "svc4", "svc4"},
    		},
    		{
    			proxyNs:   "ns1",
    			wantHosts: []string{"svc1", "svc2", "svc3", "svc4", "svc4", "svc4"},
    		},
    		{
    			proxyNs:   "random",
    			wantHosts: []string{"svc3", "svc4", "svc4", "svc4"},
    		},
    	}
    	for _, tt := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. pkg/util/iptables/testing/parse_test.go

    			rule:      `-A KUBE-SVC-4SW47YFZTEDKD3PK -m comment --comment ns4/svc4:p80 -i eth0 -j KUBE-SEP-UKSFD7AGPMPPLUHC`,
    			nonStrict: true,
    			parsed: &Rule{
    				Raw:     `-A KUBE-SVC-4SW47YFZTEDKD3PK -m comment --comment ns4/svc4:p80 -i eth0 -j KUBE-SEP-UKSFD7AGPMPPLUHC`,
    				Chain:   iptables.Chain("KUBE-SVC-4SW47YFZTEDKD3PK"),
    				Comment: &IPTablesValue{Value: "ns4/svc4:p80"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml.golden

          uri:
            exact: /baz
        name: allowed-2.http.1
        route:
        - destination:
            host: svc2.allowed-2.svc.domain.suffix
            port:
              number: 80
      - match:
        - uri:
            prefix: /foo/bar
        name: allowed-2.http.0
        route:
        - destination:
            host: svc2.allowed-2.svc.domain.suffix
            port:
              number: 80
      - match:
        - headers:
            my-header:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/util/ipvs_test.go

    )
    
    func TestVirtualServerEqual(t *testing.T) {
    	Tests := []struct {
    		svcA   *VirtualServer
    		svcB   *VirtualServer
    		equal  bool
    		reason string
    	}{
    		{
    			svcA: &VirtualServer{
    				Address:   netutils.ParseIPSloppy("10.20.30.40"),
    				Protocol:  "",
    				Port:      0,
    				Scheduler: "wrr",
    				Flags:     0,
    				Timeout:   0,
    			},
    			svcB: &VirtualServer{
    				Address:   netutils.ParseIPSloppy("10.20.30.41"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/deployment/services.go

    	})
    
    	return matchingSvcs
    }
    
    // servicePortMap build a map of ports and protocols for each Service. e.g. m[80]["TCP"] -> svcA, svcB, svcC
    func servicePortMap(svcs []ServiceSpecWithName) PortMap {
    	portMap := PortMap{}
    
    	for _, swn := range svcs {
    		svc := swn.Spec
    		for _, sPort := range svc.Ports {
    			// If it is the first occurrence of this port, create a ProtocolMap
    			if _, ok := portMap[sPort.Port]; !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/delta_test.go

    			Name:      "c",
    		},
    	}
    	svcA := &model.ServiceInfo{
    		Service: &workloadapi.Service{
    			Name:      "a",
    			Namespace: "default",
    			Hostname:  "a.default.svc.cluster.local",
    		},
    	}
    	svcB := &model.ServiceInfo{
    		Service: &workloadapi.Service{
    			Name:      "b",
    			Namespace: "default",
    			Hostname:  "b.default.svc.cluster.local",
    		},
    	}
    	svcC := &model.ServiceInfo{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top