Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Headless (0.22 sec)

  1. pkg/test/framework/features/allowlist.txt

    cni,TestCNIReachability/global-mtls-on/headless->http://headless:http
    cni,TestCNIReachability/global-mtls-on/headless->http://multiversion:http
    cni,TestCNIReachability/global-mtls-on/headless->http://naked:http
    cni,TestCNIReachability/global-mtls-on/headless->tcp://a:tcp
    cni,TestCNIReachability/global-mtls-on/headless->tcp://b:tcp
    cni,TestCNIReachability/global-mtls-on/headless->tcp://multiversion:tcp
    cni,TestCNIReachability/global-mtls-on/headless->tcp://naked:tcp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 103.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.4.md

          * if all zones in the cluster are in "fullDisruption" state we stop all evictions.
    * Add a flag for `kubectl expose`to set ClusterIP and allow headless services ([#28239](https://github.com/kubernetes/kubernetes/pull/28239), [@ApsOps](https://github.com/ApsOps))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. 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