Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for ProxyMode (0.15 sec)

  1. cmd/kube-proxy/app/server.go

    }
    
    func serveMetrics(bindAddress string, proxyMode kubeproxyconfig.ProxyMode, enableProfiling bool, errCh chan error) {
    	if len(bindAddress) == 0 {
    		return
    	}
    
    	proxyMux := mux.NewPathRecorderMux("kube-proxy")
    	healthz.InstallHandler(proxyMux)
    	slis.SLIMetricsWithReset{}.Install(proxyMux)
    
    	proxyMux.HandleFunc("/proxyMode", func(w http.ResponseWriter, r *http.Request) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server_test.go

    				MinSyncPeriod: metav1.Duration{Duration: 10 * time.Second},
    				SyncPeriod:    metav1.Duration{Duration: 60 * time.Second},
    			},
    			MetricsBindAddress: tc.metricsBindAddress,
    			Mode:               kubeproxyconfig.ProxyMode(tc.mode),
    			OOMScoreAdj:        ptr.To[int32](17),
    			PortRange:          "2-7",
    			NodePortAddresses:  []string{"10.20.30.40/16", "fd00:1::0/64"},
    			DetectLocalMode:    kubeproxyconfig.LocalModeClusterCIDR,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	defer afterTest(t)
    	testCases := []struct{ siteMode, proxyMode testMode }{
    		{http1Mode, http1Mode},
    		{http1Mode, https1Mode},
    		{https1Mode, http1Mode},
    		{https1Mode, https1Mode},
    	}
    	for _, testCase := range testCases {
    		siteMode := testCase.siteMode
    		proxyMode := testCase.proxyMode
    		t.Run(fmt.Sprintf("site=%v/proxy=%v", siteMode, proxyMode), func(t *testing.T) {
    			siteCh := make(chan *Request, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

    }
    
    function construct-windows-kubeproxy-flags {
      local flags=""
    
      # Use the same log level as the Kubelet during tests.
      flags+=" ${KUBELET_TEST_LOG_LEVEL:-"--v=2"}"
    
      # Windows uses kernelspace proxymode
      flags+=" --proxy-mode=kernelspace"
    
      # Configure kube-proxy to run as a windows service.
      flags+=" --windows-service=true"
    
      # Enabling Windows DSR mode unlocks newer network features and reduces
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.7.md

      * Special notice for kube-proxy in 1.7+ (including 1.7.0):
        * Healthz server (/healthz) will be served on 0.0.0.0:10256 by default.
        * Metrics server (/metrics and /proxyMode) will be served on 127.0.0.1:10249 by default.
        * Metrics server will continue serving /healthz.
    
    
    # v1.7.2
    
    [Documentation](https://docs.k8s.io) & [Examples](https://releases.k8s.io/release-1.7/examples)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
Back to top