Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Naked (0.04 sec)

  1. tests/integration/security/ca_custom_root/main_test.go

    		case namespacedName.Name == "server":
    			server = apps.EchoNamespace.All[index]
    		case namespacedName.Name == "server-naked-foo":
    			serverNakedFoo = apps.EchoNamespace.All[index]
    		case namespacedName.Name == "server-naked-bar":
    			serverNakedBar = apps.EchoNamespace.All[index]
    		case namespacedName.Name == "server-naked-foo-alt":
    			serverNakedFooAlt = apps.EchoNamespace.All[index]
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/filters.go

    }
    
    // reachableNakedDestinations filters out naked instances that aren't on the same network.
    // While External services are considered "naked", we won't see 500s due to different loadbalancing.
    func reachableNakedDestinations(from echo.Instance) match.Matcher {
    	srcNw := from.Config().Cluster.NetworkName()
    	excluded := match.And(
    		// Only exclude naked if all subsets are naked. If an echo instance contains a mix of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/match/matchers.go

    var External Matcher = func(i echo.Instance) bool {
    	return i.Config().IsExternal()
    }
    
    // NotExternal is equivalent to Not(External)
    var NotExternal = Not(External)
    
    // Naked matches instances with any subset marked with SidecarInject equal to false.
    var Naked Matcher = func(i echo.Instance) bool {
    	return i.Config().IsNaked()
    }
    
    // AllNaked matches instances where every subset has SidecarInject set to false.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/workloadclass.go

    type WorkloadClass = string
    
    const (
    	Proxyless   WorkloadClass = "proxyless"
    	VM          WorkloadClass = "vm"
    	Sotw        WorkloadClass = "sotw"
    	TProxy      WorkloadClass = "tproxy"
    	Naked       WorkloadClass = "naked"
    	External    WorkloadClass = "external"
    	StatefulSet WorkloadClass = "statefulset"
    	Headless    WorkloadClass = "headless"
    	Captured    WorkloadClass = "captured"
    	Waypoint    WorkloadClass = "waypoint"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/common/deployment/namespace.go

    	ESvc             = "e"
    	TproxySvc        = "tproxy"
    	VMSvc            = "vm"
    	HeadlessSvc      = "headless"
    	StatefulSetSvc   = "statefulset"
    	ProxylessGRPCSvc = "proxyless-grpc"
    	NakedSvc         = "naked"
    	SotwSvc          = "sotw"
    	WaypointSvc      = "waypoint"
    	CapturedSvc      = "captured"
    )
    
    // EchoNamespace contains the echo instances for a single namespace.
    type EchoNamespace struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. tests/integration/security/util/framework.go

    	CSvc             = "c"
    	DSvc             = "d"
    	ESvc             = "e"
    	MultiversionSvc  = "multiversion"
    	VMSvc            = "vm"
    	HeadlessSvc      = "headless"
    	NakedSvc         = "naked"
    	HeadlessNakedSvc = "headless-naked"
    	ExternalSvc      = "external"
    )
    
    type EchoDeployments struct {
    	// TODO: Consolidate the echo config and reduce/reuse echo instances (https://github.com/istio/istio/issues/28599)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. tests/integration/pilot/headers_test.go

    				return nil
    			})
    
    			// Check request and responses have no proxy headers
    			instance.CallOrFail(t, echo.CallOptions{
    				To: apps.Naked,
    				Port: echo.Port{
    					Name: ports.HTTP.Name,
    				},
    				Check: check.And(check.OK(), checkNoProxyHeaders),
    			})
    			apps.Naked[0].CallOrFail(t, echo.CallOptions{
    				To: instance,
    				Port: echo.Port{
    					Name: ports.HTTP.Name,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/match/matchers_test.go

    	// 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{{
    		Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    	}}}
    	// external svc
    	external1 = &fakeInstance{
    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. subprojects/core/src/main/java/org/gradle/initialization/LegacyTypesSupport.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.Set;
    
    /**
     * Enriches class loading with empty interfaces for certain types that have been removed,
     * but which are baked into the bytecode generated by the Groovy compiler.
     */
    @ServiceScope(Scope.Global.class)
    public interface LegacyTypesSupport {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/runtime/debug/stack_test.go

    	// (for whatever value of GOROOT is baked into the binary, not the one
    	// that may be set in the environment).
    	fileGoroot := ""
    	if envGoroot := os.Getenv("GOROOT"); envGoroot != "" {
    		// Since GOROOT is set explicitly in the environment, we can't be certain
    		// that it is the same GOROOT value baked into the binary, and we can't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top