Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for proxyEnv (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler.go

    		if !requestInfo.IsResourceRequest {
    			klog.V(3).Infof("Not a resource request skipping proxying")
    			handler.ServeHTTP(w, r)
    			return
    		}
    
    		// Request has already been proxied once, it must be served locally
    		if r.Header.Get(PeerProxiedHeader) == "true" {
    			klog.V(3).Infof("Already rerouted once, skipping proxying to peer")
    			handler.ServeHTTP(w, r)
    			return
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/controlplane/manifests.go

    func GetStaticPodSpecs(cfg *kubeadmapi.ClusterConfiguration, endpoint *kubeadmapi.APIEndpoint, proxyEnvs []kubeadmapi.EnvVar) map[string]v1.Pod {
    	// Get the required hostpath mounts
    	mounts := getHostPathVolumesForTheControlPlane(cfg)
    	if proxyEnvs == nil {
    		proxyEnvs = kubeadmutil.GetProxyEnvVars()
    	}
    	componentHealthCheckTimeout := kubeadmapi.GetActiveTimeouts().ControlPlaneComponentHealthCheck
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. pkg/kube/inject/inject.go

    	// params may be set from webhook URL, take priority over values yaml
    	if params.proxyEnvs["ISTIO_META_CLUSTER_ID"] != "" {
    		cluster = params.proxyEnvs["ISTIO_META_CLUSTER_ID"]
    	}
    	if params.proxyEnvs["ISTIO_META_NETWORK"] != "" {
    		network = params.proxyEnvs["ISTIO_META_NETWORK"]
    	}
    	// explicit label takes highest precedence
    	if n, ok := metadata.Labels[label.TopologyNetwork.Name]; ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    	FlushInterval time.Duration
    	// MaxBytesPerSec controls the maximum rate for an upstream connection. No rate is imposed if the value is zero.
    	MaxBytesPerSec int64
    	// Responder is passed errors that occur while setting up proxying.
    	Responder ErrorResponder
    	// Reject to forward redirect response
    	RejectForwardingRedirects bool
    }
    
    const defaultFlushInterval = 200 * time.Millisecond
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	HTTPSProxy string
    
    	// NoProxy represents the NO_PROXY or no_proxy environment
    	// variable. It specifies a string that contains comma-separated values
    	// specifying hosts that should be excluded from proxying. Each value is
    	// represented by an IP address prefix (1.2.3.4), an IP address prefix in
    	// CIDR notation (1.2.3.4/8), a domain name, or a special DNS label (*).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. Makefile

    test-delete-replication:
    	@(env bash $(PWD)/docs/bucket/replication/delete-replication.sh)
    
    test-delete-marker-proxying:
    	@(env bash $(PWD)/docs/bucket/replication/test_del_marker_proxying.sh)
    
    test-replication: install-race test-replication-2site test-replication-3site test-delete-replication test-sio-error test-delete-marker-proxying ## verify multi site replication
    	@echo "Running tests for replicating three sites"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    	// Optional.
    	UpgradeTransport http.RoundTripper
    }
    
    // TLSClientConfig implements pkg/util/net.TLSClientConfigHolder for proper TLS checking during
    // proxying with a spdy roundtripper.
    func (s *SpdyRoundTripper) TLSClientConfig() *tls.Config {
    	return s.tlsConfig
    }
    
    // Dial implements k8s.io/apimachinery/pkg/util/net.Dialer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/options/options.go

    	fs.StringVar(&s.ProxyClientCertFile, "proxy-client-cert-file", s.ProxyClientCertFile, ""+
    		"Client certificate used to prove the identity of the aggregator or kube-apiserver "+
    		"when it must call out during a request. This includes proxying requests to a user "+
    		"api-server and calling out to webhook admission plugins. It is expected that this "+
    		"cert includes a signature from the CA in the --requestheader-client-ca-file flag. "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. pkg/istio-agent/xds_proxy_test.go

    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/util/retry"
    	wasmcache "istio.io/istio/pkg/wasm"
    )
    
    // Validates basic xds proxy flow by proxying one CDS requests end to end.
    func TestXdsProxyBasicFlow(t *testing.T) {
    	proxy := setupXdsProxy(t)
    	f := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    	setDialOptions(proxy, f.BufListener)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. docs/config/README.md

    cors_allow_origin               (csv)       set comma separated list of origins allowed for CORS requests (default: '*')
    remote_transport_deadline       (duration)  set the deadline for API requests on remote transports while proxying between federated instances e.g. "2h" (default: '2h')
    list_quorum                     (string)    set the acceptable quorum expected for list operations e.g. "optimal", "reduced", "disk", "strict" (default: 'strict')
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
Back to top