Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for qos (0.12 sec)

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

    	}
    	if !kc.CgroupsPerQOS && len(kc.EnforceNodeAllocatable) > 0 {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: enforceNodeAllocatable (--enforce-node-allocatable) is not supported unless cgroupsPerQOS (--cgroups-per-qos) is set to true"))
    	}
    	if kc.SystemCgroups != "" && kc.CgroupRoot == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. build/root/Makefile

    #    in combination with DBG=1.
    #
    # Example:
    #   make test-e2e-node FOCUS=Kubelet SKIP=container
    #   make test-e2e-node REMOTE=true DELETE_INSTANCES=true
    #   make test-e2e-node TEST_ARGS='--kubelet-flags="--cgroups-per-qos=true"'
    # Build and run tests.
    endef
    .PHONY: test-e2e-node
    ifeq ($(PRINT_HELP),y)
    test-e2e-node:
    	echo "$$TEST_E2E_NODE_HELP_INFO"
    else
    test-e2e-node: ginkgo
    	hack/make-rules/test-e2e-node.sh
    endif
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. 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)
  4. pkg/kubelet/apis/config/validation/validation_test.go

    			conf.EnforceNodeAllocatable = []string{"pods"}
    			return conf
    		},
    		errMsg: "invalid configuration: enforceNodeAllocatable (--enforce-node-allocatable) is not supported unless cgroupsPerQOS (--cgroups-per-qos) is set to true",
    	}, {
    		name: "specify SystemCgroups without CgroupRoot",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.SystemCgroups = "/"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. pom.xml

            <artifactId>slf4j-simple</artifactId>
            <version>${slf4jVersion}</version>
            <optional>true</optional>
          </dependency>
          <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <version>${logbackClassicVersion}</version>
            <optional>true</optional>
          </dependency>
          <!--  Wagon -->
          <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                dependencies {
                    compileOnly(group = "org.slf4j", name = "slf4j-api", version = "1.7.25")
                    api("com.google.guava:guava:21.0")
                    implementation("ch.qos.logback:logback-classic:1.2.3") {
                        isTransitive = false
                    }
                    implementation(project(":a"))
                    implementation(project(":b")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/eviction_manager.go

    	statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    	"k8s.io/utils/clock"
    
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	resourcehelper "k8s.io/kubernetes/pkg/api/v1/resource"
    	v1qos "k8s.io/kubernetes/pkg/apis/core/v1/helper/qos"
    	"k8s.io/kubernetes/pkg/features"
    	evictionapi "k8s.io/kubernetes/pkg/kubelet/eviction/api"
    	"k8s.io/kubernetes/pkg/kubelet/lifecycle"
    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    	"k8s.io/kubernetes/pkg/kubelet/server/stats"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// to them if cgroups-per-qos flag is enabled.
    	pcm := kl.containerManager.NewPodContainerManager()
    	// If pod has already been terminated then we need not create
    	// or update the pod's cgroup
    	// TODO: once context cancellation is added this check can be removed
    	if !kl.podWorkers.IsPodTerminationRequested(pod.UID) {
    		// When the kubelet is restarted with the cgroups-per-qos
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. 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)
  10. cmd/kube-proxy/app/server.go

    	"k8s.io/klog/v2"
    	"k8s.io/kube-proxy/config/v1alpha1"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/cluster/ports"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/qos"
    	"k8s.io/kubernetes/pkg/proxy"
    	"k8s.io/kubernetes/pkg/proxy/apis"
    	kubeproxyconfig "k8s.io/kubernetes/pkg/proxy/apis/config"
    	proxyconfigscheme "k8s.io/kubernetes/pkg/proxy/apis/config/scheme"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top