Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 532 for proxyv2 (0.11 sec)

  1. cmd/admin-handlers-pools.go

    func proxyDecommissionRequest(ctx context.Context, defaultEndPoint Endpoint, w http.ResponseWriter, r *http.Request) (proxy bool) {
    	host := env.Get("_MINIO_DECOM_ENDPOINT_HOST", defaultEndPoint.Host)
    	if host == "" {
    		return
    	}
    	for nodeIdx, proxyEp := range globalProxyEndpoints {
    		if proxyEp.Endpoint.Host == host && !proxyEp.IsLocal {
    			if proxyRequestByNodeIndex(ctx, w, r, nodeIdx) {
    				return true
    			}
    		}
    	}
    	return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    		},
    
    		{
    			name: "proxy matches no envoyfilter",
    			proxy: &Proxy{
    				Labels:          map[string]string{"app": "v2"},
    				Metadata:        &NodeMetadata{IstioVersion: "1.4.0", Labels: map[string]string{"app": "v2"}},
    				ConfigNamespace: "test-ns",
    			},
    			expectedListenerPatches: 0,
    			expectedClusterPatches:  0,
    		},
    		{
    			name: "proxy matches envoyfilter in root ns",
    			proxy: &Proxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  3. cmd/kube-apiserver/app/testing/testserver.go

    	// to version skew
    	// 2. kube-apiserver and aggregated apiserver
    
    	// We specify this as on option to pass a common proxyCA to multiple apiservers to simulate
    	// an apiserver version skew scenario where all apiservers use the same proxyCA to verify client connections.
    	ProxyCA *ProxyCA
    }
    
    // TestServer return values supplied by kube-test-ApiServer
    type TestServer struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. releasenotes/notes/proxy-headers.yaml

    John Howard <******@****.***> 1692986923 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 18:08:43 UTC 2023
    - 314 bytes
    - Viewed (0)
  5. tests/integration/pilot/vm_test.go

    			})
    		})
    }
    
    func disconnectProxy(t framework.TestContext, pilot string, instance echo.Instance) {
    	proxyID := strings.Join([]string{instance.WorkloadsOrFail(t)[0].PodName(), instance.Config().Namespace.Name()}, ".")
    	cmd := "pilot-discovery request GET /debug/force_disconnect?proxyID=" + proxyID
    	stdOut, _, err := t.Clusters().Default().
    		PodExec(pilot, i.Settings().SystemNamespace, "discovery", cmd)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_retract_self_pseudo_v0.0.0-20200325131415-0123456789ab

    See example.com_retract_self_pseudo_v1.9.0.txt.
    
    This version is not retracted. It should be returned by the proxy's
    @latest endpoint. It should match the @latest version query.
    
    TODO(golang.org/issue/24031): the proxy and proxy.golang.org both return
    the highest release version from the @latest endpoint, even if that
    version is retracted, so there is no way for the go command to
    discover an unretracted pseudo-version.
    
    -- .mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 568 bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/hello-proxy-override.yaml

    John Howard <******@****.***> 1565919828 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 556 bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/only-proxy-container.yaml

      template:
        metadata:
          labels:
            istio: ingressgateway
        spec:
          # Ensure we can have istio-proxy as the only container. This isn't particularly useful as a sidecar
          # but will be used when we have a dedicated template to run a pod as a Gateway
          containers:
          - name: istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 07 23:55:05 UTC 2020
    - 474 bytes
    - Viewed (0)
  9. releasenotes/notes/agent-xds-proxy.yaml

    John Howard <******@****.***> 1602559294 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 13 03:21:34 UTC 2020
    - 551 bytes
    - Viewed (0)
  10. docs/de/docs/advanced/behind-a-proxy.md

    Da wir für unsere Anwendung einen Proxy mit dem Pfadpräfix `/api/v1` haben, muss das Frontend das OpenAPI-Schema unter `/api/v1/openapi.json` abrufen.
    
    ```mermaid
    graph LR
    
    browser("Browser")
    proxy["Proxy auf http://0.0.0.0:9999/api/v1/app"]
    server["Server auf http://127.0.0.1:8000/app"]
    
    browser --> proxy
    proxy --> server
    ```
    
    !!! tip "Tipp"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:07 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top