Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 116 for colgroup (0.23 sec)

  1. cluster/gce/gci/configure-helper.sh

            umask 027
            echo "Defaults secure_path=\"${KUBE_HOME}/bin:${sudo_path}\"" > /etc/sudoers.d/kube_secure_path
          )
        fi
    }
    
    function detect-cgroup-config {
      CGROUP_CONFIG=$(stat -fc %T /sys/fs/cgroup/)
      echo "Detected cgroup config as ${CGROUP_CONFIG}"
    }
    
    function override-pv-recycler {
      if [[ -z "${PV_RECYCLER_OVERRIDE_TEMPLATE:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    	// NOTE: on Windows, IsSystemdStyleName will return false, which means that the Container Info will
    	// not be assembled by cgroup key.
    	if runtime.GOOS != "windows" {
    		expectedInfoKeys = append(expectedInfoKeys, "c1")
    	} else {
    		expectedInfoKeys = append(expectedInfoKeys, "pod1-c1.slice")
    	}
    	for _, c := range expectedInfoKeys {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.11.md

    * kubeadm now detects the Docker cgroup driver and starts the kubelet with the matching driver. This eliminates a common error experienced by new users in when the Docker cgroup driver is not the same as the one set for the kubelet due to different Linux distributions setting different cgroup drivers for Docker, making it hard to start the kubelet properly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	// Monitor resource usage
    	resourceAnalyzer serverstats.ResourceAnalyzer
    
    	// Whether or not we should have the QOS cgroup hierarchy for resource management
    	cgroupsPerQOS bool
    
    	// If non-empty, pass this to the container runtime as the root cgroup.
    	cgroupRoot string
    
    	// Mounter to use for volumes.
    	mounter mount.Interface
    
    	// hostutil to interact with filesystems
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - If using cgroups v2, then the cgroup aware OOM killer will be enabled for container cgroups via  `memory.oom.group` .  This causes processes within the cgroup to be treated as a unit and killed simultaneously in the event of an OOM kill on any process in the cgroup. ([#117793](https://github.com/kubernetes/kubernetes/pull/117793), [@tzneal](https://github.com/tzneal)) [SIG Apps, Node and Testing]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.21.md

    - Fixed occasional pod cgroup freeze when using cgroup v1 and systemd driver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    * Add support for SourceIP preservation in Azure LBs ([#36557](https://github.com/kubernetes/kubernetes/pull/36557), [@brendandburns](https://github.com/brendandburns))
    * Fix fetching pids running in a cgroup, which caused problems with OOM score adjustments & setting the /system cgroup ("misc" in the summary API). ([#36551](https://github.com/kubernetes/kubernetes/pull/36551), [@timstclair](https://github.com/timstclair))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  8. pkg/kubelet/container/runtime.go

    	HostIP string
    }
    
    // DeviceInfo contains information about the device.
    type DeviceInfo struct {
    	// Path on host for mapping
    	PathOnHost string
    	// Path in Container to map
    	PathInContainer string
    	// Cgroup permissions
    	Permissions string
    }
    
    // CDIDevice contains information about CDI device
    type CDIDevice struct {
    	// Name is a fully qualified device name
    	Name string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.6.md

    Kubelet flag `--enforce-node-allocatable` with a default value of `pods` is added which will make kubelet create a top level cgroup for all pods to enforce Node Allocatable. Optionally, `system-reserved` & `kube-reserved` values can also be specified separated by comma to enforce node allocatable on cgroups specified via `--system-reserved-cgroup` & `--kube-reserved-cgroup` respectively. Note the default value of the latter flags are "". ([#41234](https://github.com/kubernetes/kubernetes/pull/41234),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/static/trace_viewer_full.html

            font-size: smaller;
            height: 1rem;
          }
    
          expand-button.button-expanded {
            transform: rotate(90deg);
          }
        </style>
        <table>
          <colgroup id="cols">
          </colgroup>
          <thead id="head">
          </thead>
          <tbody id="body">
          </tbody>
          <tfoot id="foot">
          </tfoot>
        </table>
      </template>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top