Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for NetworkName (0.78 sec)

  1. pkg/test/framework/components/echo/check/checkers.go

    		return nil
    	}
    
    	return checkReachedClusters(result, allClusters, cluster.ClustersByNetwork{
    		// Use the source network of the caller.
    		fromCluster.NetworkName(): cluster.Clusters{fromCluster},
    	})
    }
    
    // checkReachedSourceNetworkOnly verifies that the only network that was reached is the network where
    // the source workload resides.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. pkg/proxy/apis/config/v1alpha1/zz_generated.conversion.go

    func autoConvert_v1alpha1_KubeProxyWinkernelConfiguration_To_config_KubeProxyWinkernelConfiguration(in *v1alpha1.KubeProxyWinkernelConfiguration, out *config.KubeProxyWinkernelConfiguration, s conversion.Scope) error {
    	out.NetworkName = in.NetworkName
    	out.SourceVip = in.SourceVip
    	out.EnableDSR = in.EnableDSR
    	out.RootHnsEndpointName = in.RootHnsEndpointName
    	out.ForwardHealthCheckVip = in.ForwardHealthCheckVip
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  3. tests/integration/telemetry/tracing/zipkin/client_tracing_test.go

    func TestClientTracing(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			appNsInst := tracing.GetAppNamespace()
    			for _, cluster := range t.Clusters().ByNetwork()[t.Clusters().Default().NetworkName()] {
    				cluster := cluster
    				t.NewSubTest(cluster.StableName()).Run(func(ctx framework.TestContext) {
    					retry.UntilSuccessOrFail(ctx, func() error {
    						// Send test traffic with a trace header.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. tests/integration/pilot/workloadentry_test.go

    			}
    			gatewayAddresses := map[string]gwAddr{}
    			for _, cluster := range t.Clusters() {
    				if _, ok := gatewayAddresses[cluster.NetworkName()]; ok {
    					continue
    				}
    				ips, ports := i.EastWestGatewayFor(cluster).AddressesForPort(15443)
    				if ips != nil {
    					gatewayAddresses[cluster.NetworkName()] = gwAddr{ips[0], ports[0]}
    				}
    			}
    			if len(t.Clusters().Networks()) != len(gatewayAddresses) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. tests/integration/telemetry/tracing/zipkin/server_tracing_test.go

    func TestServerTracing(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			appNsInst := tracing.GetAppNamespace()
    			for _, cluster := range t.Clusters().ByNetwork()[t.Clusters().Default().NetworkName()] {
    				t.NewSubTest(cluster.StableName()).Run(func(t framework.TestContext) {
    					retry.UntilSuccessOrFail(t, func() error {
    						err := tracing.SendTraffic(t, nil, cluster)
    						if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server_windows.go

    	// not support dual-stack.
    	ipv4Supported = true
    	ipv6Supported = true
    
    	compatTester := winkernel.DualStackCompatTester{}
    	dualStackSupported = compatTester.DualStackCompatible(s.Config.Winkernel.NetworkName)
    
    	return
    }
    
    // createProxier creates the proxy.Provider
    func (s *ProxyServer) createProxier(ctx context.Context, config *proxyconfigapi.KubeProxyConfiguration, dualStackMode, initOnly bool) (proxy.Provider, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. pkg/proxy/winkernel/proxier.go

    		return false
    	}
    
    	// check if network is using overlay
    	hns, _ := newHostNetworkService(hcnImpl)
    	networkName, err := getNetworkName(networkName)
    	if err != nil {
    		klog.ErrorS(err, "Unable to determine dual-stack status, falling back to single-stack")
    		return false
    	}
    	networkInfo, err := getNetworkInfo(hns, networkName)
    	if err != nil {
    		klog.ErrorS(err, "Unable to determine dual-stack status, falling back to single-stack")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/eastwest.go

    func (i *istioImpl) deployEastWestGateway(cluster cluster.Cluster, revision string, customSettings string) error {
    	// generate istio operator yaml
    	args := []string{
    		"--cluster", cluster.Name(),
    		"--network", cluster.NetworkName(),
    		"--revision", revision,
    		"--mesh", meshID,
    	}
    	if !i.env.IsMultiCluster() {
    		args = []string{"--single-cluster"}
    	}
    	cmd := exec.Command(genGatewayScript, args...)
    	gwIOP, err := cmd.CombinedOutput()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    						// TODO fix tracing tests in multi-network https://github.com/istio/istio/issues/28890
    						for _, cluster := range ctx.Clusters().ByNetwork()[ctx.Clusters().Default().NetworkName()] {
    							cluster := cluster
    							ctx.NewSubTest(cluster.StableName()).Run(func(ctx framework.TestContext) {
    								retry.UntilSuccessOrFail(ctx, func() error {
    									err := tracing.SendTraffic(ctx, nil, cluster)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/testing/hcnutils_mock.go

    				PrefixLength: prefixLen,
    			},
    		},
    		MacAddress: mac,
    	}
    
    	endpointMap[endpoint.Id] = endpoint
    	endpointMap[endpoint.Name] = endpoint
    }
    
    func (hcnObj HcnMock) GetNetworkByName(networkName string) (*hcn.HostComputeNetwork, error) {
    	return hcnObj.network, nil
    }
    
    func (hcnObj HcnMock) GetNetworkByID(networkID string) (*hcn.HostComputeNetwork, error) {
    	return hcnObj.network, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 06:29:01 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top