Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 316 for svc3 (0.05 sec)

  1. pkg/proxy/nftables/proxier_test.go

    			svc.Spec.Type = "NodePort"
    			svc.Spec.ClusterIP = "172.30.0.43"
    			svc.Spec.Ports = []v1.ServicePort{{
    				Name:     "p80",
    				Port:     80,
    				Protocol: v1.ProtocolTCP,
    				NodePort: 3003,
    			}}
    		}),
    		// create ExternalIP service
    		makeTestService("ns4", "svc4", func(svc *v1.Service) {
    			svc.Spec.Type = "NodePort"
    			svc.Spec.ClusterIP = "172.30.0.44"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  2. 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)
  3. pkg/proxy/iptables/proxier_test.go

    				-A KUBE-SERVICES -m comment --comment "ns3/svc3 blah" svc3 line 2
    				-A KUBE-SERVICES -m comment --comment ns3/svc3 svc3 line 3
    				-A KUBE-SERVICES -m comment --comment ns4/svc4 svc4 line 1
    				-A KUBE-SERVICES -m comment --comment "ns4/svc4:p80 cluster IP" svc4 line 2
    				-A KUBE-SERVICES -m comment --comment "ns4/svc4 blah" svc4 line 3
    				COMMIT
    				`),
    		},
    		{
    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. pkg/proxy/nftables/helpers_test.go

    		add rule ip kube-proxy service-4AT6LBPK-ns3/svc3/tcp/p80 numgen random mod 1 vmap { 0 : goto endpoint-UEIP74TE-ns3/svc3/tcp/p80__10.180.0.3/80 }
    		add rule ip kube-proxy external-4AT6LBPK-ns3/svc3/tcp/p80 jump mark-for-masquerade
    		add rule ip kube-proxy external-4AT6LBPK-ns3/svc3/tcp/p80 goto service-4AT6LBPK-ns3/svc3/tcp/p80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K 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. docs/site-replication/run-multi-site-ldap.sh

    MC_HOST_svc2=http://testsvc:testsvc123@localhost:9002 ./mc ls svc2
    MC_HOST_svc3=http://testsvc:testsvc123@localhost:9003 ./mc ls svc3
    
    ./mc admin user svcacct rm minio1 testsvc
    if [ $? -ne 0 ]; then
    	echo "removing svc account failed, exiting.."
    	exit_1
    fi
    
    ./mc admin user info minio1 "uid=dillon,ou=people,ou=swengg,dc=min,dc=io"
    if [ $? -ne 0 ]; then
    	echo "policy mapping missing, exiting.."
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion_test.go

    		},
    		Ports:    ports,
    		Hostname: "svc2.allowed-1.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "allowed-2",
    		},
    		Ports:    ports,
    		Hostname: "svc2.allowed-2.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "allowed-1",
    		},
    		Ports:    ports,
    		Hostname: "svc1.allowed-1.svc.domain.suffix",
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.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/config/analysis/analyzers/analyzers_test.go

    		expected: []message{
    			{msg.ExternalNameServiceTypeInvalidPortName, "Service nginx-ns/nginx"},
    			{msg.ExternalNameServiceTypeInvalidPortName, "Service nginx-ns2/nginx-svc2"},
    			{msg.ExternalNameServiceTypeInvalidPortName, "Service nginx-ns3/nginx-svc3"},
    		},
    	},
    	{
    		name:       "ExternalNameServiceTypeValidPortName",
    		inputFiles: []string{"testdata/correct-port-name-external-name-service-type.yaml"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. 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)
Back to top