Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 194 for proxyv2 (0.18 sec)

  1. docs/em/docs/advanced/behind-a-proxy.md

    ↩ī¸ đŸ‘Ĩ ✔ī¸ đŸ—ŗ ⏎ī¸ ➡ 🔡 `/api/v1` 👆 📱, 🕸 đŸ’Ē ☕ 🗄 🔗 `/api/v1/openapi.json`.
    
    ```mermaid
    graph LR
    
    browser("Browser")
    proxy["Proxy on http://0.0.0.0:9999/api/v1/app"]
    server["Server on http://127.0.0.1:8000/app"]
    
    browser --> proxy
    proxy --> server
    ```
    
    !!! tip
        đŸ“ĸ `0.0.0.0` 🛎 ⚙ī¸ ⛓ 👈 📋 👂 🔛 🌐 đŸ“ĸ đŸ’Ē 👈 🎰/đŸ’Ŋ.
    
    đŸŠē 🎚 🔜 đŸ’Ē 🗄 🔗 đŸ“Ŗ 👈 👉 🛠ī¸ `server` 🔎 `/api/v1` (⛅ đŸ—ŗ). đŸ–ŧ:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/behind-a-proxy.md

    Because we have a proxy with a path prefix of `/api/v1` for our app, the frontend needs to fetch the OpenAPI schema at `/api/v1/openapi.json`.
    
    ```mermaid
    graph LR
    
    browser("Browser")
    proxy["Proxy on http://0.0.0.0:9999/api/v1/app"]
    server["Server on http://127.0.0.1:8000/app"]
    
    browser --> proxy
    proxy --> server
    ```
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. pkg/model/proxy.go

    // how the user wants traffic to be intercepted for the listener. TrafficInterceptionMode is
    // always derived from the Proxy metadata
    type TrafficInterceptionMode string
    
    // NodeMetadata defines the metadata associated with a proxy
    // Fields should not be assumed to exist on the proxy, especially newly added fields which will not exist
    // on older versions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. pkg/envoy/proxy.go

    	Concurrency   int32
    
    	// For unit testing, in combination with NoEnvoy prevents agent.Run from blocking
    	TestOnly    bool
    	AgentIsRoot bool
    }
    
    // NewProxy creates an instance of the proxy control commands
    func NewProxy(cfg ProxyConfig) Proxy {
    	// inject tracing flag for higher levels
    	var args []string
    	logLevel, componentLogs := splitComponentLog(cfg.LogLevel)
    	if logLevel != "" {
    		args = append(args, "-l", logLevel)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/debug.go

    func (s *DiscoveryServer) getDebugConnection(req *http.Request) (string, *Connection) {
    	if proxyID := req.URL.Query().Get("proxyID"); proxyID != "" {
    		return proxyID, s.getProxyConnection(proxyID)
    	}
    	return "", nil
    }
    
    func (s *DiscoveryServer) errorHandler(w http.ResponseWriter, proxyID string, con *Connection) {
    	if proxyID == "" {
    		w.WriteHeader(http.StatusBadRequest)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. docker/Dockerfile.distroless

    FROM ubuntu:noble as ubuntu_source
    
    # Modify contents of container
    COPY --from=distroless_source /etc/ /home/etc
    COPY --from=distroless_source /home/nonroot /home/nonroot
    RUN echo istio-proxy:x:1337: >> /home/etc/group
    RUN echo istio-proxy:x:1337:1337:istio-proxy:/nonexistent:/sbin/nologin >> /home/etc/passwd
    
    # Customize distroless with the following:
    # - password file
    # - groups file
    # - /home/nonroot directory
    FROM distroless_source
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 828 bytes
    - Viewed (0)
  7. cluster/gce/manifests/kube-proxy.manifest

    # Please keep kube-proxy configuration in-sync with:
    # cluster/addons/kube-proxy/kube-proxy-ds.yaml
    apiVersion: v1
    kind: Pod
    metadata:
      name: kube-proxy
      namespace: kube-system
      labels:
        tier: node
        component: kube-proxy
    spec:
      priorityClassName: system-node-critical
      priority: 2000001000
      hostNetwork: true
      tolerations:
      - operator: "Exists"
        effect: "NoExecute"
      - operator: "Exists"
        effect: "NoSchedule"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top