Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 126 for Headless (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top