Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 542 for svc4 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. istioctl/pkg/writer/ztunnel/configdump/services.go

    	for _, svc := range svcs {
    		var ip string
    		if len(svc.Addresses) > 0 {
    			_, ip, _ = strings.Cut(svc.Addresses[0], "/")
    		}
    		waypoint := serviceWaypointName(svc, zDump.Services)
    		fmt.Fprintf(w, "%v\t%v\t%v\t%v\n",
    			svc.Namespace, svc.Name, ip, waypoint)
    	}
    	return w.Flush()
    }
    
    // PrintServiceDump prints the relevant services in the config dump to the ConfigWriter stdout
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. 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)
  6. pkg/proxy/iptables/number_generated_rules_test.go

    			expectedNatRules:    325,
    		},
    
    		{
    			name: "0 Services 0 EndpointsPerService - LoadBalancer",
    			svcFunc: func(svc *v1.Service) {
    				svc.Spec.Type = v1.ServiceTypeLoadBalancer
    				svc.Spec.ExternalIPs = []string{"1.2.3.4"}
    				svc.Spec.LoadBalancerSourceRanges = []string{" 1.2.3.4/28"}
    				svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{
    					IP: "1.2.3.4",
    				}}
    			},
    			services:            0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/workload_test.go

    		// Adding a pod in the service should not trigger an update for that pod - we didn't explicitly subscribe
    		createPod(s, "pod5", "not-sa", "127.0.0.5", "not-node")
    		ads.ExpectNoResponse()
    
    		// And if the service changes to no longer select them, we should see them *removed* (not updated)
    		createService(s, "svc1", "default", map[string]string{"app": "nothing"})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. cluster/addons/cluster-loadbalancing/glbc/default-svc.yaml

    Zihong Zheng <******@****.***> 1487983992 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 00:53:12 UTC 2017
    - 577 bytes
    - Viewed (0)
  9. src/net/rpc/debug.go

    	// Build a sorted version of the data.
    	var services serviceArray
    	server.serviceMap.Range(func(snamei, svci any) bool {
    		svc := svci.(*service)
    		ds := debugService{svc, snamei.(string), make([]debugMethod, 0, len(svc.method))}
    		for mname, method := range svc.method {
    			ds.Method = append(ds.Method, debugMethod{method, mname})
    		}
    		slices.SortFunc(ds.Method, func(a, b debugMethod) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/network.go

    func (c *Controller) updateServiceNodePortAddresses(svcs ...*model.Service) bool {
    	// node event, update all nodePort gateway services
    	if len(svcs) == 0 {
    		svcs = c.getNodePortGatewayServices()
    	}
    	// no nodePort gateway service found, no update
    	if len(svcs) == 0 {
    		return false
    	}
    	for _, svc := range svcs {
    		c.RLock()
    		nodeSelector := c.nodeSelectorsForServices[svc.Hostname]
    		c.RUnlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top