Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for NetworkName (0.17 sec)

  1. cmd/kube-proxy/app/init_windows.go

    	fs.StringVar(&o.config.Winkernel.SourceVip, "source-vip", o.config.Winkernel.SourceVip, "The IP address of the source VIP for non-DSR.")
    	fs.StringVar(&o.config.Winkernel.NetworkName, "network-name", o.config.Winkernel.NetworkName, "The name of the cluster network.")
    	fs.BoolVar(&o.config.Winkernel.EnableDSR, "enable-dsr", o.config.Winkernel.EnableDSR, "If true make kube-proxy apply DSR policies for service VIP")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:41:55 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/cluster/clusters.go

    	return out
    }
    
    // ByNetwork returns a map of network name to a subset of clusters
    func (c Clusters) ByNetwork() ClustersByNetwork {
    	out := make(ClustersByNetwork)
    	for _, cc := range c {
    		out[cc.NetworkName()] = append(out[cc.NetworkName()], cc)
    	}
    	return out
    }
    
    // Networks returns the list of network names for the clusters.
    func (c Clusters) Networks() []string {
    	return c.ByNetwork().Networks()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. pkg/test/framework/components/cluster/topology.go

    // MetadataValue provides the configured value for a metadata key in the cluster configuration.
    func (c Topology) MetadataValue(key string) string {
    	return c.ConfigMetadata.String(key)
    }
    
    // NetworkName the cluster is on
    func (c Topology) NetworkName() string {
    	return c.Network
    }
    
    // Name provides the ClusterName this cluster used by Istio.
    func (c Topology) Name() string {
    	return c.ClusterName
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/after/v1alpha1.yaml

      minSyncPeriod: 1s
      syncPeriod: 30s
    nodePortAddresses: null
    oomScoreAdj: -999
    portRange: ""
    showHiddenMetricsForVersion: ""
    winkernel:
      enableDSR: false
      forwardHealthCheckVip: false
      networkName: ""
      rootHnsEndpointName: ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. pkg/test/framework/components/cluster/cluster.go

    	// allow test grid to compare runs, even when the underlying cluster names are dynamic.
    	// Use Name for validation/interaction with the actual cluster.
    	StableName() string
    
    	// NetworkName the cluster is on
    	NetworkName() string
    
    	// MinKubeVersion returns true if the cluster is at least the version specified,
    	// false otherwise
    	MinKubeVersion(minor uint) bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/echotest/filters.go

    		match.Not(match.Network(from.Config().Cluster.NetworkName())))
    	return match.Not(excluded)
    }
    
    // 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(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/roundtrip/default/v1alpha1.yaml

      minSyncPeriod: 1s
      syncPeriod: 30s
    nodePortAddresses: null
    oomScoreAdj: -999
    portRange: ""
    showHiddenMetricsForVersion: ""
    winkernel:
      enableDSR: false
      forwardHealthCheckVip: false
      networkName: ""
      rootHnsEndpointName: ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/environment/kube/kube.go

    func (e *Environment) ClustersByNetwork() map[string][]cluster.Cluster {
    	out := make(map[string][]cluster.Cluster)
    	for _, c := range e.Clusters() {
    		out[c.NetworkName()] = append(out[c.NetworkName()], c)
    	}
    	return out
    }
    
    // ID implements resource.Instance
    func (e *Environment) ID() resource.ID {
    	return e.id
    }
    
    func (e *Environment) Settings() *Settings {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top