Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for redirection (0.23 sec)

  1. pkg/config/constants/constants.go

    	// AmbientRedirection specifies whether a pod has ambient redirection (to ztunnel) configured.
    	AmbientRedirection = "ambient.istio.io/redirection"
    	// AmbientRedirectionEnabled indicates redirection is configured. This is set by the CNI on pods
    	// when it actually has successfully set up pod redirection, rather than by the user.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/run.go

    	// Create a new chain for redirecting outbound traffic to the common Envoy port.
    	// In both chains, '-j RETURN' bypasses Envoy and '-j ISTIOREDIRECT'
    	// redirects to Envoy.
    	cfg.ruleBuilder.AppendRule(iptableslog.UndefinedCommand,
    		constants.ISTIOREDIRECT, constants.NAT, "-p", constants.TCP, "-j", constants.REDIRECT, "--to-ports", cfg.cfg.ProxyPort)
    
    	// Use this chain also for redirecting inbound traffic to the common Envoy port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_inbound.go

    			virtualInboundFilterChains = append(virtualInboundFilterChains, chains...)
    		}
    	}
    
    	if lb.node.GetInterceptionMode() != model.InterceptionNone {
    		// Prepend virtual inbound, as long as we are using redirection.
    		listeners = append([]*listener.Listener{lb.inboundVirtualListener(virtualInboundFilterChains)}, listeners...)
    	}
    
    	return listeners
    }
    
    // inboundVirtualListener builds the virtual inbound listener.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. istioctl/pkg/waypoint/waypoint.go

    			// choose to do so.
    			//
    			// NOTE: This is a warning and not an error because the user may not intend to label their namespace as ambient.
    			//
    			// e.g. Users are handling ambient redirection per workload rather than at the namespace level.
    			hasWaypoint, err := namespaceHasLabel(kubeClient, ns, constants.AmbientUseWaypointLabel)
    			if err != nil {
    				return err
    			}
    			if enrollNamespace {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/net/http/server.go

    // If the url argument is non-nil, handler also deals with trailing-slash
    // redirection: when a path doesn't match exactly, the match is tried again
    // after appending "/" to the path. If that second match succeeds, the last
    // return value is the URL to redirect to.
    func (mux *ServeMux) matchOrRedirect(host, method, path string, u *url.URL) (_ *routingNode, matches []string, redirectTo *url.URL) {
    	mux.mu.RLock()
    	defer mux.mu.RUnlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/transfer/AbstractMavenTransferListener.java

            String direction = event.getRequestType() == TransferEvent.RequestType.PUT ? "to" : "from";
    
            TransferResource resource = event.getResource();
            MessageBuilder message = messageBuilderFactory.builder();
            message.style(STYLE).append(action).append(' ').append(direction).append(' ');
            message.resetStyle().append(resource.getRepositoryId());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/transfer/Slf4jMavenTransferListener.java

            String direction = event.getRequestType() == TransferEvent.RequestType.PUT ? "to" : "from";
    
            TransferResource resource = event.getResource();
            StringBuilder message = new StringBuilder();
            message.append(action).append(' ').append(direction).append(' ').append(resource.getRepositoryId());
            message.append(": ");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    					},
    				}
    			}
    		}
    	}
    
    	ec := newClusterWrapper(c)
    	cb.setUpstreamProtocol(ec, port)
    	addTelemetryMetadata(c, port, service, direction, inboundServices)
    	if direction == model.TrafficDirectionOutbound {
    		// If stat name is configured, build the alternate stats name.
    		if len(cb.req.Push.Mesh.OutboundClusterStatName) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    	setParallel(t)
    	mux := NewServeMux()
    	for _, e := range serveMuxRegister {
    		mux.Handle(e.pattern, e.h)
    	}
    
    	for _, tt := range serveMuxTests2 {
    		tries := 1 // expect at most 1 redirection if redirOk is true.
    		turl := tt.url
    		for {
    			u, e := url.Parse(turl)
    			if e != nil {
    				t.Fatal(e)
    			}
    			r := &Request{
    				Method: tt.method,
    				Host:   tt.host,
    				URL:    u,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    			}
    		}),
    		ValidArgsFunction: completion.ValidPodsNameArgs(ctx),
    	}
    
    	common.attach(cmd)
    	cmd.PersistentFlags().StringVar(&direction, "direction", "", "Filter workloads by direction (inbound or outbound)")
    	cmd.PersistentFlags().BoolVar(&raw, "raw", false, "If set, show IP addresses instead of names")
    	cmd.PersistentFlags().StringVar(&workloadsNamespace, "workload-namespace", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top