Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 181 for Headless (0.19 sec)

  1. pkg/test/framework/components/echo/match/matchers_test.go

    	// virtual machine
    	vm1 = &fakeInstance{Cluster: cls1, Namespace: namespace.Static("echo"), Service: "vm", DeployAsVM: true}
    	// headless
    	headless1 = &fakeInstance{Cluster: cls1, Namespace: namespace.Static("echo"), Service: "headless", Headless: true}
    	// naked pod (uninjected)
    	naked1 = &fakeInstance{Cluster: cls1, Namespace: namespace.Static("echo"), Service: "naked", Subsets: []echo.SubsetConfig{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. tests/integration/security/util/reachability/context.go

    	Naked         echo.Instances
    	Headless      echo.Instances
    	HeadlessNaked echo.Instances
    )
    
    const (
    	ASvc             = "a"
    	BSvc             = "b"
    	CSvc             = "c"
    	DSvc             = "d"
    	ESvc             = "e"
    	MultiversionSvc  = "multiversion"
    	VMSvc            = "vm"
    	HeadlessSvc      = "headless"
    	NakedSvc         = "naked"
    	HeadlessNakedSvc = "headless-naked"
    	ExternalSvc      = "external"
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/workloadclass.go

    	Sotw        WorkloadClass = "sotw"
    	TProxy      WorkloadClass = "tproxy"
    	Naked       WorkloadClass = "naked"
    	External    WorkloadClass = "external"
    	StatefulSet WorkloadClass = "statefulset"
    	Headless    WorkloadClass = "headless"
    	Captured    WorkloadClass = "captured"
    	Waypoint    WorkloadClass = "waypoint"
    	Standard    WorkloadClass = "standard"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/common/ports/ports.go

    		AutoTCPServer,
    		AutoHTTP,
    		AutoGRPC,
    		AutoHTTPS,
    		HTTPInstance,
    		HTTPLocalHost,
    		TCPWorkloadOnly,
    		HTTPWorkloadOnly,
    		TCPForHTTP,
    	}
    }
    
    // Headless returns a modified version of All for use with headless services.
    func Headless() echo.Ports {
    	all := All()
    	headlessPorts := make([]echo.Port, len(all))
    	for i, p := range all {
    		if !p.IsWorkloadOnly() {
    			p.ServicePort = p.WorkloadPort
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 08 16:17:34 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/well_known_labels.go

    	// IsHeadlessService is added by Controller to an Endpoint denoting if its parent
    	// Service is Headless. The existence of this label can be used further by other
    	// controllers and kube-proxy to check if the Endpoint objects should be replicated when
    	// using Headless Services
    	IsHeadlessService = "service.kubernetes.io/headless"
    
    	// LabelNodeExcludeBalancers specifies that the node should not be considered as a target
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. pkg/dns/server/name_table.go

    					if !netutil.IsValidIPAddress(instance.Address) {
    						continue
    					}
    					// TODO(stevenctl): headless across-networks https://github.com/istio/istio/issues/38327
    					sameNetwork := cfg.Node.InNetwork(instance.Network)
    					sameCluster := cfg.Node.InCluster(instance.Locality.ClusterID)
    					// For all k8s headless services, populate the dns table with the endpoint IPs as k8s does.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/common/deployment/namespace.go

    	// IPv6 only echo app to be used by tests if running in dual-stack mode
    	E echo.Instances
    	// Standard echo app with TPROXY interception mode to be used by tests
    	Tproxy echo.Instances
    	// Headless echo app to be used by tests
    	Headless echo.Instances
    	// StatefulSet echo app to be used by tests
    	StatefulSet echo.Instances
    	// ProxylessGRPC echo app to be used by tests
    	ProxylessGRPC echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. samples/addons/loki.yaml

    ---
    # Source: loki/templates/single-binary/service-headless.yaml
    apiVersion: v1
    kind: Service
    metadata:
      name: loki-headless
      namespace: istio-system
      labels:
        helm.sh/chart: loki-6.6.3
        app.kubernetes.io/name: loki
        app.kubernetes.io/instance: loki
        app.kubernetes.io/version: "3.0.0"
        app.kubernetes.io/managed-by: Helm
        variant: headless
        prometheus.io/service-monitor: "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/deployment/flags.go

    var _ config.Value = &configs{}
    
    func (c *configs) String() string {
    	buf := &bytes.Buffer{}
    	for _, cc := range *c {
    		_, _ = fmt.Fprintf(buf, "FQDN:     %s\n", cc.ClusterLocalFQDN())
    		_, _ = fmt.Fprintf(buf, "Headless: %v\n", cc.Headless)
    		_, _ = fmt.Fprintf(buf, "VM:       %v\n", cc.DeployAsVM)
    		if cc.DeployAsVM {
    			_, _ = fmt.Fprintf(buf, "VMDistro: %s\n", cc.VMDistro)
    		}
    		if cc.Cluster.Name() != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. releasenotes/notes/35883.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
      **Enabled** discovering cross-cluster, same network, endpoints for headless services when `ISTIO_META_DNS_CAPTURE` and
      `ISTIO_META_DNS_AUTO_ALLOCATE` are enabled in `ProxyConfig.proxyMetadata`. This can be disabled by setting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 03 22:48:19 UTC 2021
    - 366 bytes
    - Viewed (0)
Back to top