Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for Destinations (0.18 sec)

  1. pkg/proxy/iptables/proxier.go

    	if proxier.nodePortAddresses.MatchAll() {
    		destinations := []string{"-m", "addrtype", "--dst-type", "LOCAL"}
    		// Block localhost nodePorts if they are not supported. (For IPv6 they never
    		// work, and for IPv4 they only work if we previously set `route_localnet`.)
    		if isIPv6 {
    			destinations = append(destinations, "!", "-d", "::1/128")
    		} else if !proxier.localhostNodePorts {
    			destinations = append(destinations, "!", "-d", "127.0.0.0/8")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/sidecar_test.go

    			},
    			Spec: &networking.VirtualService{
    				Hosts: []string{"virtualbar"},
    				Http: []*networking.HTTPRoute{
    					{
    						Mirror: &networking.Destination{Host: "foo.svc.cluster.local"},
    						Route:  []*networking.HTTPRouteDestination{{Destination: &networking.Destination{Host: "baz.svc.cluster.local"}}},
    					},
    				},
    			},
    		},
    	}
    
    	virtualServices2 = []config.Config{
    		{
    			Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    						proxier.localDetector.IfNotLocalNFT(),
    						"jump", markMasqChain,
    					),
    				})
    			}
    		}
    
    		// Set up external traffic handling (if any "external" destinations are
    		// enabled). All captured traffic for all external destinations should
    		// jump to externalTrafficChain, which will handle some special cases and
    		// then jump to externalPolicyChain.
    		if usesExternalTrafficChain {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    func (e *edgeState) process() {
    	dsts := e.destinations
    
    	// Process the destinations until they are all satisfied.
    	for len(dsts) > 0 {
    		i := 0
    		for _, d := range dsts {
    			if !e.processDest(d.loc, d.vid, d.splice, d.pos) {
    				// Failed - save for next iteration.
    				dsts[i] = d
    				i++
    			}
    		}
    		if i < len(dsts) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    		fqdn := string(model.ResolveShortnameToFQDN(dest.Destination.Host, config.Meta{Namespace: vs.Namespace}))
    		if extendFQDN(fqdn) == svcHost {
    			if dest.Destination.Subset != "" {
    				if slices.Contains(nonmatchingSubsets, dest.Destination.Subset) {
    					mismatchNotes = append(mismatchNotes, fmt.Sprintf("Route to non-matching subset %s for (%s)",
    						dest.Destination.Subset,
    						renderMatches(route.Match)))
    					continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    		return errors.New("IPVS virtual service does not exist")
    	}
    
    	// curEndpoints represents IPVS destinations listed from current system.
    	curEndpoints := sets.New[string]()
    	curDests, err := proxier.ipvs.GetRealServers(appliedVirtualServer)
    	if err != nil {
    		proxier.logger.Error(err, "Failed to list IPVS destinations")
    		return err
    	}
    	for _, des := range curDests {
    		curEndpoints.Insert(des.String())
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/httproute_test.go

    		Gateways: []string{"mesh"},
    		Http: []*networking.HTTPRoute{
    			{
    				Route: []*networking.HTTPRouteDestination{
    					{
    						Destination: &networking.Destination{
    							Host: "test-duplicate-domains.default",
    						},
    					},
    				},
    			},
    		},
    	}
    	virtualServiceSpecDuplicate := &networking.VirtualService{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route.go

    		}
    	}
    
    	// Now group these Services by port so that we can infer the destination.port if the user
    	// doesn't specify any port for a multiport service. We need to know the destination port in
    	// order to build the cluster name (outbound|<port>|<subset>|<serviceFQDN>)
    	// If the destination service is being accessed on port X, we set that as the default
    	// destination port
    	serviceByPort := make(map[int][]*model.Service)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	Ports []NetworkPolicyPort `json:"ports,omitempty" protobuf:"bytes,1,rep,name=ports"`
    
    	// List of destinations for outgoing traffic of pods selected for this rule.
    	// Items in this list are combined using a logical OR operation. If this field is
    	// empty or missing, this rule matches all destinations (traffic not restricted by
    	// destination). If this field is present and contains at least one item, this rule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    			addDestination(h.Mirror.Host, h.Mirror.GetPort())
    		}
    		for _, m := range h.Mirrors {
    			if m.Destination != nil {
    				addDestination(m.Destination.Host, m.Destination.GetPort())
    			}
    		}
    	}
    	for _, t := range v.Tcp {
    		for _, r := range t.Route {
    			if r.Destination != nil {
    				addDestination(r.Destination.Host, r.Destination.GetPort())
    			}
    		}
    	}
    	for _, t := range v.Tls {
    		for _, r := range t.Route {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top