Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for Headless (0.17 sec)

  1. tests/integration/ambient/main_test.go

    			"istio.io/test-exclude-namespace": "true",
    		},
    	})
    	if err != nil {
    		return err
    	}
    
    	prom, err = prometheus.New(t, prometheus.Config{})
    	if err != nil {
    		return err
    	}
    
    	// Headless services don't work with targetPort, set to same port
    	headlessPorts := make([]echo.Port, len(ports.All()))
    	for i, p := range ports.All() {
    		p.ServicePort = p.WorkloadPort
    		headlessPorts[i] = p
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. tests/integration/security/pass_through_filter_chain_test.go

    						Apply()
    
    					echotest.New(t, apps.Ns1.All.Instances()).
    						WithDefaultFilters(1, 1).
    						FromMatch(match.NotProxylessGRPC).
    						ToMatch(match.And(
    							// TODO(nmittler): Why not headless/multiversion?
    							match.NotHeadless,
    							match.NotMultiVersion,
    							match.NotNaked,
    							match.NotProxylessGRPC)).
    						ConditionallyTo(echotest.NoSelfCalls).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/deployment.go

    			cfg.ServiceLabels = make(map[string]string)
    		}
    		cfg.ServiceLabels[constants.AmbientUseWaypointLabel] = cfg.ServiceWaypointProxy
    	}
    	return map[string]any{
    		"Service":        cfg.Service,
    		"Headless":       cfg.Headless,
    		"ServiceAccount": cfg.ServiceAccount,
    		"ServicePorts":   cfg.Ports.GetServicePorts(),
    		"ServiceLabels":  cfg.ServiceLabels,
    		"IPFamilies":     cfg.IPFamilies,
    		"IPFamilyPolicy": cfg.IPFamilyPolicy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller.go

    				log.Errorf("proxy is in cluster %v, but controller is for cluster %v", proxy.Metadata.ClusterID, c.Cluster())
    				return nil
    			}
    
    			// 1. find proxy service by label selector, if not any, there may exist headless service without selector
    			// failover to 2
    			allServices := c.services.List(pod.Namespace, klabels.Everything())
    			if services := getPodServices(allServices, pod); len(services) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top