Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 96 for proxyIps (0.33 sec)

  1. pkg/proxy/apis/config/types.go

    	// kube-proxy is running on. If unset, the node name is assumed to be the same as
    	// the node's hostname.
    	HostnameOverride string
    	// bindAddress can be used to override kube-proxy's idea of what its node's
    	// primary IP is. Note that the name is a historical artifact, and kube-proxy does
    	// not actually bind any sockets to this IP.
    	BindAddress string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/behind-a-proxy.md

        "root_path": "/api/v1"
    }
    ```
    
    So, it won't expect to be accessed at `http://127.0.0.1:8000/api/v1/app`.
    
    Uvicorn will expect the proxy to access Uvicorn at `http://127.0.0.1:8000/app`, and then it would be the proxy's responsibility to add the extra `/api/v1` prefix on top.
    
    ## About proxies with a stripped path prefix
    
    Keep in mind that a proxy with stripped path prefix is only one of the ways to configure it.
    
    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. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    // STDIN channel back onto the client's STDOUT channel. There are two servers in this test: the
    // upstream fake SPDY server, and the StreamTranslator server. The StreamTranslator proxys the
    // data received from the websocket client upstream to the SPDY server (by translating the
    // websocket data into spdy). The returned data read on the websocket client STDOUT is then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    		})
    	}
    }
    
    // GetProxyServiceTargets returns service instances co-located with a given proxy
    // TODO: this code does not return k8s service instances when the proxy's IP is a workload entry
    // To tackle this, we need a ip2instance map like what we have in service entry.
    func (esc *endpointSliceController) GetProxyServiceTargets(proxy *model.Proxy) []model.ServiceTarget {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/networkfilter_test.go

    		}
    		if !redisProxy.LatencyInMicros {
    			t.Errorf("redis proxy latency stat is not configured for microseconds")
    		}
    		if redisProxy.PrefixRoutes.CatchAllRoute.Cluster != "redis-cluster" {
    			t.Errorf("redis proxy's PrefixRoutes.CatchAllCluster is %s", redisProxy.PrefixRoutes.CatchAllRoute.Cluster)
    		}
    	} else {
    		t.Errorf("redis filter type is %T not listener.Filter_TypedConfig ", redisFilter.ConfigType)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. pilot/pkg/xds/ads.go

    		Delta: delta,
    	}
    
    	// SidecarScope for the proxy may not have been updated based on this pushContext.
    	// It can happen when `processRequest` comes after push context has been updated(s.initPushContext),
    	// but proxy's SidecarScope has been updated(s.computeProxyState -> SetSidecarScope) due to optimizations that skip sidecar scope
    	// computation.
    	if con.proxy.SidecarScope != nil && con.proxy.SidecarScope.Version != request.Push.PushVersion {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. pilot/pkg/xds/delta.go

    		},
    	}
    	// SidecarScope for the proxy may has not been updated based on this pushContext.
    	// It can happen when `processRequest` comes after push context has been updated(s.initPushContext),
    	// but before proxy's SidecarScope has been updated(s.updateProxy).
    	if con.proxy.SidecarScope != nil && con.proxy.SidecarScope.Version != request.Push.PushVersion {
    		s.computeProxyState(con.proxy, request)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  8. pilot/pkg/autoregistration/controller.go

    	err := c.onWorkloadConnect(entryName, proxy, conn.ConnectedAt(), autoCreate)
    	if err != nil {
    		log.Error(err)
    	}
    	return err
    }
    
    // ensureProxyCanControlEntry ensures the connected proxy's identity matches that of the WorkloadEntry it is associating with.
    func ensureProxyCanControlEntry(proxy *model.Proxy, wle *config.Config) error {
    	if !features.ValidateWorkloadEntryIdentity {
    		// Validation disabled, skip
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. src/net/http/httputil/reverseproxy.go

    	// The Rewrite function may copy the inbound URL's
    	// RawQuery to the outbound URL to preserve the original
    	// parameter string. Note that this can lead to security
    	// issues if the proxy's interpretation of query parameters
    	// does not match that of the downstream server.
    	//
    	// At most one of Rewrite or Director may be set.
    	Rewrite func(*ProxyRequest)
    
    	// Director is a function which modifies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. pkg/istio-agent/agent.go

    	IsIPv6 bool
    
    	// Path to local UDS to communicate with Envoy
    	XdsUdsPath string
    
    	// Ability to retrieve ProxyConfig dynamically through XDS
    	EnableDynamicProxyConfig bool
    
    	// All of the proxy's IP Addresses
    	ProxyIPAddresses []string
    
    	// Envoy status port (that circles back to the agent status port). Really belongs to the proxy config.
    	// Cannot be eradicated because mistakes have been made.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top