Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 392 for redirection (0.22 sec)

  1. cni/pkg/util/podutil.go

    		// Pod explicitly asked to not have ambient redirection enabled
    		return false
    	}
    	return true
    }
    
    // PodRedirectionActive reports on whether the pod _has_ actually been configured for traffic redirection.
    //
    // That is, have we annotated it after successfully sending it to the node proxy and set up iptables rules.
    //
    // If you just want to know if the pod _should be_ configured for traffic redirection, see PodRedirectionEnabled
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 17:18:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/cmd/root.go

    		&cfg.InboundTunnelPort)
    
    	flag.BindEnv(fs, constants.ProxyUID, "u",
    		"Specify the UID of the user for which the redirection is not applied. Typically, this is the UID of the proxy container.",
    		&cfg.ProxyUID)
    
    	flag.BindEnv(fs, constants.ProxyGID, "g",
    		"Specify the GID of the user for which the redirection is not applied (same default value as -u param).",
    		&cfg.ProxyGID)
    
    	flag.BindEnv(fs, constants.InboundInterceptionMode, "m",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. releasenotes/notes/50804.yaml

    issue:
      - 50736
    releaseNotes:
    - |
      **Added** Allow pods to be opted out of ambient capture using the `istio.io/dataplane-mode=none` label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 387 bytes
    - Viewed (0)
  4. releasenotes/notes/48253.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 48212
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 207 bytes
    - Viewed (0)
  5. tools/istio-clean-iptables/pkg/cmd/root.go

    		&cfg.DryRun)
    
    	flag.BindEnv(fs, constants.ProxyUID, "u",
    		"Specify the UID of the user for which the redirection is not applied. Typically, this is the UID of the proxy container.",
    		&cfg.ProxyUID)
    
    	flag.BindEnv(fs, constants.ProxyGID, "g",
    		"Specify the GID of the user for which the redirection is not applied (same default value as -u param).",
    		&cfg.ProxyGID)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/JULRedirectorTest.groovy

            System.err == outputs.stdErrPrintStream
        }
    
        def "start and stop output with redirection and default logging"() {
            when:
            redirector.redirectStandardOutputTo(stdOutListener)
            redirector.redirectStandardErrorTo(stdErrListener)
    
            redirector.start()
            [Level.SEVERE, Level.WARNING, Level.INFO, Level.CONFIG, Level.FINE, Level.FINER, Level.FINEST].each {
                logger1.log(it, "Test");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/constants/constants.go

    A group can be specified either by name or by a numeric GID.
    The wildcard character "*" can be used to configure redirection of traffic from all groups.`)
    
    	OwnerGroupsExclude = env.Register("ISTIO_OUTBOUND_OWNER_GROUPS_EXCLUDE", "",
    		`Comma separated list of groups whose outgoing traffic is to be excluded from redirection to Envoy.
    A group can be specified either by name or by a numeric GID.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. releasenotes/notes/50132.yaml

        These changes allow configuring a standard `istio` gateway as a Waypoint.
        For this to work, it must be configured as a `ClusterIP` Service with
        redirection enabled. This is colloquially referred to as a "gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 659 bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/StandardOutputRedirector.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.redirector;
    
    public interface StandardOutputRedirector {
    
        /**
         * Starts redirection of System.out and System.err to the listener attached to
         * {@link #redirectStandardErrorTo(OutputListener)} and
         * {@link #redirectStandardOutputTo(OutputListener)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. 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)
Back to top