Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for kubelet_ (0.11 sec)

  1. pkg/features/kube_features.go

    	// kep: http://kep.k8s.io/4033
    	// alpha: v1.28
    	//
    	// Enable detection of the kubelet cgroup driver configuration option from
    	// the CRI.  The CRI runtime also needs to support this feature in which
    	// case the kubelet will ignore the cgroupDriver (--cgroup-driver)
    	// configuration option. If runtime doesn't support it, the kubelet will
    	// fallback to using it's cgroupDriver option.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. go.mod

    	k8s.io/kube-proxy => ./staging/src/k8s.io/kube-proxy
    	k8s.io/kube-scheduler => ./staging/src/k8s.io/kube-scheduler
    	k8s.io/kubectl => ./staging/src/k8s.io/kubectl
    	k8s.io/kubelet => ./staging/src/k8s.io/kubelet
    	k8s.io/metrics => ./staging/src/k8s.io/metrics
    	k8s.io/mount-utils => ./staging/src/k8s.io/mount-utils
    	k8s.io/pod-security-admission => ./staging/src/k8s.io/pod-security-admission
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/dashboard_test.go

    			// In default install, we have no proxy
    			"istio-proxy",
    			// We do not simulate validation failed
    			"galley_validation_failed",
    			// cAdvisor does not expose this metrics, and we don't have kubelet in kind
    			"container_fs_usage_bytes",
    			// flakes: https://github.com/istio/istio/issues/29871
    			"container_memory_working_set_bytes",
    			"container_cpu_usage_seconds_total",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/fit.go

    		// Scheduler will calculate resources usage for a Pod containing
    		// restartable init containers that will be equal or more than kubelet will
    		// require to run the Pod. So there will be no overbooking. However, to
    		// avoid the inconsistency in resource calculation between the scheduler
    		// and the older (before v1.28) kubelet, make the Pod unschedulable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. hack/unwanted-dependencies.json

            "k8s.io/apiserver",
            "k8s.io/client-go",
            "k8s.io/code-generator",
            "k8s.io/cri-api",
            "k8s.io/kms",
            "k8s.io/kube-aggregator",
            "k8s.io/kubelet",
            "k8s.io/kubernetes",
            "k8s.io/metrics"
          ],
          "github.com/google/gofuzz": [
            "github.com/json-iterator/go",
            "k8s.io/apiextensions-apiserver",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. cni/pkg/plugin/plugin.go

    	loggingOptions := log.DefaultOptions()
    	loggingOptions.OutputPaths = []string{"stderr"}
    	loggingOptions.JSONEncoding = true
    	if cfg != nil {
    		// Tee all logs to UDS. Stdout will go to kubelet (hard to access, UDS will be read by the CNI DaemonSet and exposed
    		// by normal `kubectl logs`
    		if cfg.LogUDSAddress != "" {
    			loggingOptions.WithTeeToUDS(cfg.LogUDSAddress, constants.UDSLogPath)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. pkg/security/security.go

    // Both are critical.
    var (
    	// Require3PToken disables the use of K8S 1P tokens. Note that 1P tokens can be used to request
    	// 3P TOKENS. A 1P token is the token automatically mounted by Kubelet and used for authentication with
    	// the Apiserver.
    	Require3PToken = env.Register("REQUIRE_3P_TOKEN", false,
    		"Reject k8s default tokens, without audience. If false, default K8S token will be accepted")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. pkg/controller/podgc/gc_controller_test.go

    	"k8s.io/klog/v2/ktesting"
    	"k8s.io/kubernetes/pkg/controller"
    	"k8s.io/kubernetes/pkg/controller/podgc/metrics"
    	"k8s.io/kubernetes/pkg/controller/testutil"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/eviction"
    	testingclock "k8s.io/utils/clock/testing"
    	"k8s.io/utils/pointer"
    )
    
    func alwaysReady() bool { return true }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
Back to top