Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for proxyEnv (0.24 sec)

  1. 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)
  2. 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 (1)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. docs/metrics/prometheus/list.md

    | `minio_cluster_replication_proxied_delete_tagging_requests_failures` | (_Site Replication Only_)Number of failures proxying DELETE tagging requests to replication target                          |
    | `minio_cluster_replication_proxied_get_tagging_requests_failures` | (_Site Replication Only_)Number of failures proxying GET tagging requests to replication target                          |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  9. cmd/generic-handlers.go

    			r.URL.Scheme = "http"
    			if globalIsTLS {
    				r.URL.Scheme = "https"
    			}
    			r.URL.Host = getHostFromSrv(sr)
    			// Make sure we remove any existing headers before
    			// proxying the request to another node.
    			for k := range w.Header() {
    				w.Header().Del(k)
    			}
    			globalForwarder.ServeHTTP(w, r)
    			return
    		}
    		h.ServeHTTP(w, r)
    	})
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. pkg/istio-agent/xds_proxy_delta.go

    // block forever on
    func (con *ProxyConnection) sendDeltaRequest(req *discovery.DeltaDiscoveryRequest) {
    	con.deltaRequestsChan.Put(req)
    }
    
    // DeltaAggregatedResources is an implementation of Delta XDS API used for proxying between Istiod and Envoy.
    // Every time envoy makes a fresh connection to the agent, we reestablish a new connection to the upstream xds
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top