Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for qos (0.29 sec)

  1. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	logsapi "k8s.io/component-base/logs/api/v1"
    	"k8s.io/kubelet/config/v1beta1"
    	"k8s.io/kubernetes/pkg/cluster/ports"
    	"k8s.io/kubernetes/pkg/kubelet/qos"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	utilpointer "k8s.io/utils/pointer"
    )
    
    func TestSetDefaultsKubeletConfiguration(t *testing.T) {
    
    	tests := []struct {
    		name     string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. docs/bucket/notifications/README.md

    topic*               (string)    name of the MQTT topic to publish
    username             (string)    MQTT username
    password             (string)    MQTT password
    qos                  (number)    set the quality of service priority, defaults to '0'
    keep_alive_interval  (duration)  keep-alive interval for MQTT connections in s,m,h,d
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    		}
    	}
    
    	// Setup event recorder if required.
    	makeEventRecorder(ctx, kubeDeps, nodeName)
    
    	if kubeDeps.ContainerManager == nil {
    		if s.CgroupsPerQOS && s.CgroupRoot == "" {
    			klog.InfoS("--cgroups-per-qos enabled, but --cgroup-root was not specified.  defaulting to /")
    			s.CgroupRoot = "/"
    		}
    
    		machineInfo, err := kubeDeps.CAdvisorInterface.MachineInfo()
    		if err != nil {
    			return err
    		}
    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. gradle/verification-metadata.xml

             <trusted-key id="47504B76CF89C15C0512D9AFE16AB52D79FD224F" group="^com[.]google($|([.].*))" regex="true"/>
             <trusted-key id="475F3B8E59E6E63AA78067482C7B12F2A511E325">
                <trusting group="ch.qos.logback"/>
                <trusting group="org.slf4j"/>
                <trusting group="org.slf4j" name="slf4j-api"/>
             </trusted-key>
             <trusted-key id="4DB1A49729B053CAF015CEE9A6ADFC93EF34893E" group="org.hamcrest"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		requiresRestart         []bool
    		invokeUpdateResources   bool
    		expectedCurrentLimits   []v1.ResourceList
    		expectedCurrentRequests []v1.ResourceList
    	}{
    		"Guaranteed QoS Pod - CPU & memory resize requested, update CPU": {
    			resourceName: v1.ResourceCPU,
    			apiSpecResources: []v1.ResourceRequirements{
    				{Limits: res150m150Mi, Requests: res150m150Mi},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.3.md

    * Revert "Wait for arc.getArchive() to complete before running tests" ([#27130](https://github.com/kubernetes/kubernetes/pull/27130), [@pwittrock](https://github.com/pwittrock))
    * ResourceQuota BestEffort scope aligned with Pod level QoS ([#26969](https://github.com/kubernetes/kubernetes/pull/26969), [@derekwaynecarr](https://github.com/derekwaynecarr))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

    # if enabled, must set CGROUP_ROOT
    CGROUPS_PER_QOS=${CGROUPS_PER_QOS:-true}
    # name of the cgroup driver, i.e. cgroupfs or systemd
    CGROUP_DRIVER=${CGROUP_DRIVER:-""}
    # if cgroups per qos is enabled, optionally change cgroup root
    CGROUP_ROOT=${CGROUP_ROOT:-""}
    # owner of client certs, default to current user if not specified
    USER=${USER:-$(whoami)}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/strategy_test.go

    	}
    	for id, testCase := range testCases {
    		Strategy.PrepareForCreate(genericapirequest.NewContext(), testCase.pod)
    		actual := testCase.pod.Status.QOSClass
    		if actual != testCase.expected {
    			t.Errorf("[%d]: invalid qos pod %s, expected: %s, actual: %s", id, testCase.pod.Name, testCase.expected, actual)
    		}
    	}
    }
    
    func TestSchedulingGatedCondition(t *testing.T) {
    	tests := []struct {
    		name string
    		pod  *api.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top