Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for redirectCode (0.39 sec)

  1. cni/pkg/plugin/sidecar_iptables_linux.go

    	cfg.CNIMode = true
    	cfg.NetworkNamespace = netns
    	cfg.ProxyPort = rdrct.targetPort
    	cfg.ProxyUID = rdrct.noRedirectUID
    	cfg.ProxyGID = rdrct.noRedirectGID
    	cfg.InboundInterceptionMode = rdrct.redirectMode
    	cfg.OutboundIPRangesInclude = rdrct.includeIPCidrs
    	cfg.InboundPortsExclude = rdrct.excludeInboundPorts
    	cfg.InboundPortsInclude = rdrct.includeInboundPorts
    	cfg.ExcludeInterfaces = rdrct.excludeInterfaces
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                              description: On a redirect, overwrite the port portion of
                                the URL with this value.
                              type: integer
                            redirectCode:
                              description: On a redirect, Specifies the HTTP status code
                                to use in the redirect response.
                              type: integer
                            scheme:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    defaultConfig is used, but this is nested under `meshConfig` for consistency with other # components. # TODO: https://github.com/istio/istio/issues/43248 meshConfig: defaultConfig: proxyMetadata: {} # Ambient redirection mode: "iptables" or "ebpf" redirectMode: "iptables" # This value defines: # 1. how many seconds kube waits for ztunnel pod to gracefully exit before forcibly terminating it (this value) # 2. how many seconds ztunnel waits to drain its own connections (this value - 1 sec) # Default K8S...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  4. cni/README.md

            - "sidecar.istio.io/status" exists
    
    ### Redirect API
    
    The annotation based control is currently only supported in 'sidecar' mode. See plugin/redirect.go for details.
    
    - redirectMode allows TPROXY may to be set, required envoy has extra permissions. Default is redirect.
    - includeIPCidr, excludeIPCidr
    - includeInboudPorts, excludeInboundPorts
    - includeOutboutPorts, excludeOutboundPorts
    - excludeInterfaces
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/net/http/client_test.go

    	}
    	if ue.Err != context.Canceled {
    		t.Errorf("url.Error.Err = %v; want %v", ue.Err, context.Canceled)
    	}
    }
    
    type redirectTest struct {
    	suffix       string
    	want         int // response code
    	redirectBody string
    }
    
    func TestPostRedirects(t *testing.T) {
    	postRedirectTests := []redirectTest{
    		{"/", 200, "first"},
    		{"/?code=301&next=302", 200, "c301"},
    		{"/?code=302&next=302", 200, "c302"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top