Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,594 for InNetwork (0.15 sec)

  1. pkg/dns/server/name_table.go

    						// However, this only impacts the DNS response. If we were to send all
    						// endpoints, cross network routing would break, as we do passthrough LB and
    						// don't go through the network gateway. While we could, hypothetically, send
    						// "network-local" endpoints, this would still make enabling DNS give vastly
    						// different load balancing than without, so its probably best to filter.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/endpoints/ep_filters.go

    				}
    			}
    
    			epNetwork := istioEndpoint.Network
    			epCluster := istioEndpoint.Locality.ClusterID
    			gateways := b.selectNetworkGateways(epNetwork, epCluster)
    
    			// Check if the endpoint is directly reachable. It's considered directly reachable if
    			// the endpoint is either on the local network or on a remote network that can be reached
    			// directly from the local network.
    			if b.proxy.InNetwork(epNetwork) || len(gateways) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/context.go

    // restricted by network (via ISTIO_META_REQUESTED_NETWORK_VIEW).
    // If not set, we assume that the proxy wants to see endpoints in any network.
    func (node *Proxy) GetView() ProxyView {
    	return newProxyView(node)
    }
    
    // InNetwork returns true if the proxy is on the given network, or if either
    // the proxy's network or the given network is unspecified ("").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/endpoint_builder.go

    		return false
    	}
    	// Only send endpoints from the networks in the network view requested by the proxy.
    	// The default network view assigned to the Proxy is nil, in that case match any network.
    	if !b.proxyView.IsVisible(ep) {
    		// Endpoint's network doesn't match the set of networks that the proxy wants to see.
    		return false
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/Network.java

     * subtype of {@code Network} that provides methods for adding and removing nodes and edges. If you
     * do not need to mutate a network (e.g. if you write a method than runs a read-only algorithm on
     * the network), you should use the non-mutating {@link Network} interface, or an {@link
     * ImmutableNetwork}.
     *
     * <p>You can create an immutable copy of an existing {@code Network} using {@link
     * ImmutableNetwork#copyOf(Network)}:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/Network.java

     * subtype of {@code Network} that provides methods for adding and removing nodes and edges. If you
     * do not need to mutate a network (e.g. if you write a method than runs a read-only algorithm on
     * the network), you should use the non-mutating {@link Network} interface, or an {@link
     * ImmutableNetwork}.
     *
     * <p>You can create an immutable copy of an existing {@code Network} using {@link
     * ImmutableNetwork#copyOf(Network)}:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/network.go

    type namedRangerEntry struct {
    	name    network.ID
    	network net.IPNet
    }
    
    // Network returns the IPNet for the network
    func (n namedRangerEntry) Network() net.IPNet {
    	return n.network
    }
    
    // onNetworkChange is fired if the default network is changed either via the namespace label or mesh-networks
    func (c *Controller) onNetworkChange() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/network.go

    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/istiomultierror"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // NetworkGateway is the gateway of a network
    type NetworkGateway struct {
    	// Network is the ID of the network where this Gateway resides.
    	Network network.ID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. releasenotes/notes/network-label.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 25500
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:02:28 UTC 2020
    - 360 bytes
    - Viewed (0)
  10. cluster/addons/kube-network-policies/kube-network-policies.yaml

    kind: DaemonSet
    metadata:
      name: kube-network-policies
      namespace: kube-system
      labels:
        tier: node
        app: kube-network-policies
        k8s-app: kube-network-policies
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      selector:
        matchLabels:
          app: kube-network-policies
      template:
        metadata:
          labels:
            tier: node
            app: kube-network-policies
            k8s-app: kube-network-policies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:27:59 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top