Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 181 for Headless (0.24 sec)

  1. releasenotes/notes/terminating-headless.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 47348
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:21 UTC 2023
    - 213 bytes
    - Viewed (0)
  2. releasenotes/notes/drop-headless.yaml

    John Howard <******@****.***> 1708755516 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 164 bytes
    - Viewed (0)
  3. releasenotes/notes/headless-auto-http.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 34679
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 20 17:39:20 UTC 2021
    - 214 bytes
    - Viewed (0)
  4. pkg/dns/server/name_table_test.go

    						Ips:       []string{"19.6.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod3.headless-svc",
    						Namespace: "testns",
    					},
    					"pod4.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"9.16.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod4.headless-svc",
    						Namespace: "testns",
    					},
    					"headless-svc.testns.svc.cluster.local": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. 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)
  6. pkg/test/framework/components/echo/echotest/filters_test.go

    	vm2 = &fakeInstance{Cluster: cls2, Namespace: echo1NS, Service: "vm", DeployAsVM: true}
    	// headless
    	headless1 = &fakeInstance{Cluster: cls1, Namespace: echo1NS, Service: "headless", Headless: true}
    	headless2 = &fakeInstance{Cluster: cls2, Namespace: echo1NS, Service: "headless", Headless: true}
    	// naked pod (uninjected)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/match/matchers.go

    }
    
    // NotNaked is equivalent to Not(Naked)
    var NotNaked = Not(Naked)
    
    // Headless matches instances that are backed by headless services.
    var Headless Matcher = func(i echo.Instance) bool {
    	return i.Config().Headless
    }
    
    // NotHeadless is equivalent to Not(Headless)
    var NotHeadless = Not(Headless)
    
    // ProxylessGRPC matches instances that are Pods with a SidecarInjectTemplate annotation equal to grpc.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/echotest/filters.go

    	}
    	return match.NotWaypoint
    }
    
    // reachableHeadlessDestinations filters out headless services that aren't in the same cluster
    // TODO(stevenctl): headless across-networks https://github.com/istio/istio/issues/38327
    func reachableHeadlessDestinations(from echo.Instance) match.Matcher {
    	excluded := match.And(
    		match.Headless,
    		match.Not(match.Network(from.Config().Cluster.NetworkName())))
    	return match.Not(excluded)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/httproute_test.go

    				"headless.default",
    				"*.headless.default.svc.cluster.local",
    				"*.headless",
    				"*.headless.default.svc",
    				"*.headless.default",
    			},
    		},
    		{
    			name: "dual stack k8s service with default domain",
    			service: &model.Service{
    				Hostname:       "echo.default.svc.cluster.local",
    				MeshExternal:   false,
    				DefaultAddress: "1.2.3.4",
    				ClusterVIPs: model.AddressMap{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. tests/integration/security/util/framework.go

    	Multiversion  echo.Instances
    	Headless      echo.Instances
    	Naked         echo.Instances
    	VM            echo.Instances
    	HeadlessNaked echo.Instances
    	All           echo.Instances
    	External      echo.Instances
    }
    
    func EchoConfig(name string, headless bool, annos map[string]string) echo.Config {
    	out := echo.Config{
    		Service:        name,
    		ServiceAccount: true,
    		Headless:       headless,
    		Subsets: []echo.SubsetConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top