Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 194 for Headless (0.2 sec)

  1. pilot/pkg/features/pilot.go

    	MulticlusterHeadlessEnabled = env.Register("ENABLE_MULTICLUSTER_HEADLESS", true,
    		"If true, the DNS name table for a headless service will resolve to same-network endpoints in any cluster.").Get()
    
    	ResolveHostnameGateways = env.Register("RESOLVE_HOSTNAME_GATEWAYS", true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/util/util.go

    	kubeClient := vpm.Host.GetKubeClient()
    	if kubeClient == nil {
    		// Don't handle the controller/kubelet version skew check and fallback
    		// to just checking the feature gates. This can happen if
    		// we are in a standalone (headless) Kubelet
    		return true, nil
    	}
    
    	adcHost, ok := vpm.Host.(volume.AttachDetachVolumeHost)
    	if !ok {
    		// Don't handle the controller/kubelet version skew check and fallback
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    							listenerOpts.bind.binds = []string{instance.Address}
    							lb.buildSidecarOutboundListener(listenerOpts, listenerMap, virtualServices, actualWildcards)
    						}
    					} else {
    						// Standard logic for headless and non headless services
    						lb.buildSidecarOutboundListener(listenerOpts, listenerMap, virtualServices, actualWildcards)
    					}
    				}
    			}
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/tls.go

    		// `PILOT_ENABLE_HEADLESS_SERVICE_POD_LISTENERS` enabled (by default) and applicable to all that's needed, pilot will generate
    		// an outbound listener for each pod in a headless service. There is thus no need to do a SNI match. It saves us from having to
    		// generate expensive permutations of the host name just like RDS does..
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/check/checkers.go

    			// Istio filters out cross-network endpoints.
    			return checkReachedSourceNetworkOnly(result, allClusters)
    		}
    
    		if !dnsCaptureEnabled && to.Config().IsHeadless() {
    			// Headless services rely on DNS resolution. If DNS capture is
    			// enabled, DNS will return all endpoints in the mesh, which will
    			// allow requests to go cross-cluster. Otherwise, k8s DNS will
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. operator/README.md

    To use Remote debugging with IntelliJ, replace above step 2 with following:
    
    1. From `./operator/cmd/operator` path run
    `
    dlv debug --headless --listen=:2345 --api-version=2 -- server
    `.
    
    1. In IntelliJ, create a new Go Remote debug configuration with default settings.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.pb.go

    	// a workload that backs a Kubernetes service will typically have only endpoints. A
    	// workload that backs a headless Kubernetes service, however, will have both
    	// addresses as well as a hostname used for direct access to the headless endpoint.
    	// TODO: support this field
    	Hostname string `protobuf:"bytes,21,opt,name=hostname,proto3" json:"hostname,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.2.md

      * A pod can specify its own Hostname and Subdomain via annotations (<code>pod.beta.kubernetes.io/hostname, pod.beta.kubernetes.io/subdomain)</code>. If the Subdomain matches the name of a [headless service](http://kubernetes.io/docs/user-guide/services/#headless-services) in the same namespace, a DNS A record is also created for the pod’s FQDN. More
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_utils.go

    	pod.Spec.Hostname = pod.Name
    	pod.Spec.Subdomain = set.Spec.ServiceName
    }
    
    // updateIdentity updates pod's name, hostname, and subdomain, and StatefulSetPodNameLabel to conform to set's name
    // and headless service.
    func updateIdentity(set *apps.StatefulSet, pod *v1.Pod) {
    	ordinal := getOrdinal(pod)
    	pod.Name = getPodName(set, ordinal)
    	pod.Namespace = set.Namespace
    	if pod.Labels == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. pkg/dns/client/dns.go

    		// requests for A and AAAA may get NXDOMAIN for AAAA and treat the entire thing as a NXDOMAIN
    		response.Answer = answers
    		// Randomize the responses; this ensures for things like headless services we can do DNS-LB
    		// This matches standard kube-dns behavior. We only do this for cached responses as the
    		// upstream DNS server would already round robin if desired.
    		if len(answers) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top