Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for KubeAPIBurst (0.19 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.go

    	}
    	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
    		// is not set, and false when MaxParallelImagePulls is set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    			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)
Back to top