Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for BestEffort (0.31 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	fakeRuntimeService := apitest.NewFakeRuntimeService()
    	fakeImageService := apitest.NewFakeImageService()
    	// Only an empty machineInfo is needed here, because in unit test all containers are besteffort,
    	// data in machineInfo is not used. If burstable containers are used in unit test in the future,
    	// we may want to set memory capacity.
    	memoryCapacityQuantity := resource.MustParse(fakeNodeAllocatableMemory)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	PodQOSGuaranteed PodQOSClass = "Guaranteed"
    	// PodQOSBurstable is the Burstable qos class.
    	PodQOSBurstable PodQOSClass = "Burstable"
    	// PodQOSBestEffort is the BestEffort qos class.
    	PodQOSBestEffort PodQOSClass = "BestEffort"
    )
    
    // PodDNSConfig defines the DNS parameters of a pod in addition to
    // those generated from DNSPolicy.
    type PodDNSConfig struct {
    	// A list of DNS name server IP addresses.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	PodQOSGuaranteed PodQOSClass = "Guaranteed"
    	// PodQOSBurstable is the Burstable qos class.
    	PodQOSBurstable PodQOSClass = "Burstable"
    	// PodQOSBestEffort is the BestEffort qos class.
    	PodQOSBestEffort PodQOSClass = "BestEffort"
    )
    
    // PodDNSConfig defines the DNS parameters of a pod in addition to
    // those generated from DNSPolicy.
    type PodDNSConfig struct {
    	// A list of DNS name server IP addresses.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation_test.go

    						ImagePullPolicy:          "Always",
    						Image:                    "foo:V2",
    					}},
    				},
    			},
    			err:  "Pod QoS is immutable",
    			test: "Pod QoS change, besteffort -> burstable",
    		}, {
    			new: core.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "pod"},
    				Spec: core.PodSpec{
    					Containers: []core.Container{{
    						Name:                     "container",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    							Enum:        []interface{}{"BestEffort", "Burstable", "Guaranteed"},
    						},
    					},
    					"ephemeralContainerStatuses": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "enum": [
                "BestEffort",
                "Burstable",
                "Guaranteed"
              ],
              "type": "string"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
Back to top