Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for NetworkName (0.16 sec)

  1. pkg/proxy/winkernel/hns.go

    	getNetworkByName(name string) (*hnsNetworkInfo, error)
    	getAllEndpointsByNetwork(networkName string) (map[string]*endpointInfo, error)
    	getEndpointByID(id string) (*endpointInfo, error)
    	getEndpointByIpAddress(ip string, networkName string) (*endpointInfo, error)
    	getEndpointByName(id string) (*endpointInfo, error)
    	createEndpoint(ep *endpointInfo, networkName string) (*endpointInfo, error)
    	deleteEndpoint(hnsID string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/proxy/winkernel/hcnutils.go

    	DeleteAllHnsLoadBalancerPolicy()
    }
    
    type hcnImpl struct{}
    
    func newHcnImpl() hcnImpl {
    	return hcnImpl{}
    }
    
    func (hcnObj hcnImpl) GetNetworkByName(networkName string) (*hcn.HostComputeNetwork, error) {
    	return hcn.GetNetworkByName(networkName)
    }
    
    func (hcnObj hcnImpl) GetNetworkByID(networkID string) (*hcn.HostComputeNetwork, error) {
    	return hcn.GetNetworkByID(networkID)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 03:08:46 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top