Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for KubeAPIQPS (0.19 sec)

  1. pkg/kubelet/apis/config/helpers_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.ContentType, "kube-api-content-type", c.ContentType, "Content type of requests sent to apiserver.")
    	fs.Int32Var(&c.KubeAPIQPS, "kube-api-qps", c.KubeAPIQPS, "QPS to use while talking with kubernetes apiserver. The number must be >= 0. If 0 will use DefaultQPS: 50. Doesn't cover events and node heartbeat apis which rate limiting is controlled by a different set of flags")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    func kubeClientConfigOverrides(s *options.KubeletServer, clientConfig *restclient.Config) {
    	setContentTypeForClient(clientConfig, s.ContentType)
    	// Override kubeconfig qps/burst settings from flags
    	clientConfig.QPS = float32(s.KubeAPIQPS)
    	clientConfig.Burst = int(s.KubeAPIBurst)
    }
    
    // getNodeName returns the node name according to the cloud provider
    // if cloud provider is specified. Otherwise, returns the hostname of the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"kubeAPIQPS": {
    						SchemaProps: spec.SchemaProps{
    							Description: "kubeAPIQPS is the QPS to use while talking with kubernetes apiserver. Default: 50",
    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top