Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for KubeAPIQPS (0.4 sec)

  1. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/roundtrip/default/v1beta1.yaml

    httpCheckFrequency: 20s
    imageGCHighThresholdPercent: 85
    imageGCLowThresholdPercent: 80
    imageMaximumGCAge: 0s
    imageMinimumGCAge: 2m0s
    iptablesDropBit: 15
    iptablesMasqueradeBit: 14
    kind: KubeletConfiguration
    kubeAPIBurst: 100
    kubeAPIQPS: 50
    localStorageCapacityIsolation: true
    logging:
      flushFrequency: 5s
      format: text
      options:
        json:
          infoBufferSize: "0"
        text:
          infoBufferSize: "0"
      verbosity: 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/after/v1beta1.yaml

    httpCheckFrequency: 20s
    imageGCHighThresholdPercent: 85
    imageGCLowThresholdPercent: 80
    imageMaximumGCAge: 0s
    imageMinimumGCAge: 2m0s
    iptablesDropBit: 15
    iptablesMasqueradeBit: 14
    kind: KubeletConfiguration
    kubeAPIBurst: 100
    kubeAPIQPS: 50
    localStorageCapacityIsolation: true
    logging:
      flushFrequency: 5s
      format: text
      options:
        json:
          infoBufferSize: "0"
        text:
          infoBufferSize: "0"
      verbosity: 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				NodeStatusMaxImages:                       utilpointer.Int32(50),
    				MaxOpenFiles:                              1000000,
    				ContentType:                               "application/vnd.kubernetes.protobuf",
    				KubeAPIQPS:                                utilpointer.Int32(50),
    				KubeAPIBurst:                              100,
    				SerializeImagePulls:                       utilpointer.Bool(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/v1beta1/defaults.go

    	}
    	if obj.MaxOpenFiles == 0 {
    		obj.MaxOpenFiles = 1000000
    	}
    	if obj.ContentType == "" {
    		obj.ContentType = "application/vnd.kubernetes.protobuf"
    	}
    	if obj.KubeAPIQPS == nil {
    		obj.KubeAPIQPS = utilpointer.Int32(50)
    	}
    	if obj.KubeAPIBurst == 0 {
    		obj.KubeAPIBurst = 100
    	}
    	if obj.SerializeImagePulls == nil {
    		// SerializeImagePulls is default to true when MaxParallelImagePulls
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    			obj.StreamingConnectionIdleTimeout = metav1.Duration{Duration: 4 * time.Hour}
    			obj.SyncFrequency = metav1.Duration{Duration: 1 * time.Minute}
    			obj.ContentType = "application/vnd.kubernetes.protobuf"
    			obj.KubeAPIQPS = 50
    			obj.KubeAPIBurst = 100
    			obj.HairpinMode = v1beta1.PromiscuousBridge
    			obj.EvictionHard = eviction.DefaultEvictionHard
    			obj.EvictionPressureTransitionPeriod = metav1.Duration{Duration: 5 * time.Minute}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/validation/validation_test.go

    		errMsg: "invalid configuration: kubeAPIBurst (--kube-api-burst) -1 must not be a negative number",
    	}, {
    		name: "invalid KubeAPIQPS",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.KubeAPIQPS = -1
    			return conf
    		},
    		errMsg: "invalid configuration: kubeAPIQPS (--kube-api-qps) -1 must not be a negative number",
    	}, {
    		name: "invalid NodeStatusMaxImages",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/validation/validation.go

    	}
    	if kc.KubeAPIQPS < 0 {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: kubeAPIQPS (--kube-api-qps) %v must not be a negative number", kc.KubeAPIQPS))
    	}
    	if kc.NodeStatusMaxImages < -1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    		return err
    	}
    	out.MaxOpenFiles = in.MaxOpenFiles
    	out.ContentType = in.ContentType
    	if err := v1.Convert_Pointer_int32_To_int32(&in.KubeAPIQPS, &out.KubeAPIQPS, s); err != nil {
    		return err
    	}
    	out.KubeAPIBurst = in.KubeAPIBurst
    	if err := v1.Convert_Pointer_bool_To_bool(&in.SerializeImagePulls, &out.SerializeImagePulls, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. 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)
  10. pkg/kubelet/apis/config/types.go

    	NodeStatusMaxImages int32
    	// contentType is contentType of requests sent to apiserver.
    	ContentType string
    	// kubeAPIQPS is the QPS to use while talking with kubernetes apiserver
    	KubeAPIQPS int32
    	// kubeAPIBurst is the burst to allow while talking with kubernetes
    	// apiserver
    	KubeAPIBurst int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top