Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Headless (0.13 sec)

  1. tests/integration/pilot/common/routing.go

    					from: vm,
    					to:   t.Apps.A,
    					host: deployment.ASvc,
    				},
    				vmCase{
    					name: "dns: VM to k8s headless service",
    					from: vm,
    					to:   match.Cluster(vm.Config().Cluster.Config()).GetMatches(t.Apps.Headless),
    					host: t.Apps.Headless.Config().ClusterLocalFQDN(),
    				},
    				vmCase{
    					name: "dns: VM to k8s statefulset service",
    					from: vm,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier_test.go

    	makeServiceMap(fp,
    		makeTestService("somewhere-else", "headless", func(svc *v1.Service) {
    			svc.Spec.Type = v1.ServiceTypeClusterIP
    			svc.Spec.ClusterIP = v1.ClusterIPNone
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "rpc", "UDP", 1234, 0, 0)
    		}),
    		makeTestService("somewhere-else", "headless-without-port", func(svc *v1.Service) {
    			svc.Spec.Type = v1.ServiceTypeClusterIP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    	makeServiceMap(fp,
    		makeTestService("somewhere-else", "headless", func(svc *v1.Service) {
    			svc.Spec.Type = v1.ServiceTypeClusterIP
    			svc.Spec.ClusterIP = v1.ClusterIPNone
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "rpc", "UDP", 1234, 0, 0)
    		}),
    		makeTestService("somewhere-else", "headless-without-port", func(svc *v1.Service) {
    			svc.Spec.Type = v1.ServiceTypeClusterIP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    		return "<none>"
    	}
    	list := []string{}
    	max := 3
    	more := false
    	count := 0
    	for i := range endpoints.Subsets {
    		ss := &endpoints.Subsets[i]
    		if len(ss.Ports) == 0 {
    			// It's possible to have headless services with no ports.
    			count += len(ss.Addresses)
    			for i := range ss.Addresses {
    				if len(list) == max {
    					more = true
    					// the next loop is redundant
    					break
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    		PodCgroupRoot:            kubeDeps.ContainerManager.GetPodCgroupRoot(),
    	}
    
    	var serviceLister corelisters.ServiceLister
    	var serviceHasSynced cache.InformerSynced
    	if kubeDeps.KubeClient != nil {
    		// don't watch headless services, they are not needed since this informer is only used to create the environment variables for pods.
    		// See https://issues.k8s.io/122394
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	// name.  This is used by types to implement the inside-out
    	// C++ declaration syntax.
    	inner []AST
    
    	// The printing field is a list of items we are currently
    	// printing.  This avoids endless recursion if a substitution
    	// reference creates a cycle in the graph.
    	printing []AST
    }
    
    // writeByte adds a byte to the string being printed.
    func (ps *printState) writeByte(b byte) {
    	ps.last = b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top