Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 194 for Headless (0.2 sec)

  1. tests/integration/ambient/baseline_test.go

      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: {{.Resolution}}
      location: {{.Location}}
      endpoints:
      # we send directly to a Pod IP here. This is essentially headless
      - address: {{.IngressIp}} # TODO won't work with DNS resolution tests
        ports:
          http: {{.IngressHttpPort}}`).
    				WithParams(param.Params{}.SetWellKnown(param.Namespace, apps.Namespace))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    		return allErrs
    	}
    
    	oldIsHeadless := isHeadlessService(oldService)
    	newIsHeadless := isHeadlessService(service)
    
    	// if changed to/from headless, then bail out
    	if newIsHeadless != oldIsHeadless {
    		return allErrs
    	}
    	// headless can change families
    	if newIsHeadless {
    		return allErrs
    	}
    
    	switch {
    	case len(oldService.Spec.IPFamilies) == len(service.Spec.IPFamilies):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    	fp := NewFakeProxier(ipt)
    
    	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: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // optionally be specified, as describe above).  Valid values are "None",
      // empty string (""), or a valid IP address. Setting this to "None" makes a
      // "headless service" (no virtual IP), which is useful when direct endpoint
      // connections are preferred and proxying is not required.  Only applies to
      // types ClusterIP, NodePort, and LoadBalancer. If this field is specified
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// optionally be specified, as describe above).  Valid values are "None",
    	// empty string (""), or a valid IP address. Setting this to "None" makes a
    	// "headless service" (no virtual IP), which is useful when direct endpoint
    	// connections are preferred and proxying is not required.  Only applies to
    	// types ClusterIP, NodePort, and LoadBalancer. If this field is specified
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. 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)
  7. pkg/apis/core/types.go

    	// of the service will fail. This field can not be changed through updates.
    	// Valid values are "None", empty string (""), or a valid IP address. "None"
    	// can be specified for headless services when proxying is not required.
    	// Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if
    	// type is ExternalName.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.20.md

    - Adds `create ingress` command to `kubectl` ([#78153](https://github.com/kubernetes/kubernetes/pull/78153), [@amimof](https://github.com/amimof)) [SIG CLI and Network]
    - Adds a headless service on node-local-cache addon. ([#88412](https://github.com/kubernetes/kubernetes/pull/88412), [@stafot](https://github.com/stafot)) [SIG Cloud Provider and Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
Back to top