Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 101 for colgroup (0.42 sec)

  1. 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)
  2. 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)
  3. pkg/kubelet/server/server.go

    			namespace = v
    		}
    		if v, ok := c.Spec.Labels[kubelettypes.KubernetesContainerNameLabel]; ok {
    			containerName = v
    		}
    		// Associate pod cgroup with pod so we have an accurate accounting of sandbox
    		if podName == "" && namespace == "" {
    			if pod, found := s.GetPodByCgroupfs(c.Name); found {
    				podName = pod.Name
    				namespace = pod.Namespace
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/cri_stats_provider.go

    	filteredInfos, cinfosByPodCgroupKey := filterTerminatedContainerInfoAndAssembleByPodCgroupKey(infos)
    	for key, info := range filteredInfos {
    		// On systemd using devicemapper each mount into the container has an
    		// associated cgroup. We ignore them to ensure we do not get duplicate
    		// entries in our summary. For details on .mount units:
    		// http://man7.org/linux/man-pages/man5/systemd.mount.5.html
    		if strings.HasSuffix(key, ".mount") {
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/preflight/checks.go

    	}
    	if err := scanner.Err(); err != nil {
    		return []error{errors.Wrap(err, "error parsing /proc/swaps")}, nil
    	}
    
    	if len(buf) > 1 {
    		return []error{errors.New("swap is supported for cgroup v2 only. " +
    			"The kubelet must be properly configured to use swap. Please refer to https://kubernetes.io/docs/concepts/architecture/nodes/#swap-memory, " +
    			"or disable swap on the node")}, nil
    	}
    
    	return nil, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    			{Name: "bar"},
    		},
    	}
    
    	fakeRuntime := testKubelet.fakeRuntime
    	fakeContainerManager := testKubelet.fakeContainerManager
    	fakeContainerManager.PodContainerManager.AddPodFromCgroups(pod) // add pod to mock cgroup
    	fakeRuntime.PodList = []*containertest.FakePod{
    		{Pod: pod},
    	}
    	kubelet := testKubelet.kubelet
    	kubelet.cgroupsPerQOS = true // enable cgroupsPerQOS to turn on the cgroups cleanup
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. prow/config/calico.yaml

                  # so that it outlives the init container.
                  mountPropagation: Bidirectional
                # Mount /proc/ from host which usually is an init program at /nodeproc. It's needed by mountns binary,
                # executed by calico-node, to mount root cgroup2 fs at /run/calico/cgroup to attach CTLB programs correctly.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.13.md

    ### SIG Node
    
    - Fixed a bug in previous releases where a pod could be placed inside another pod's cgroup when specifying --cgroup-root ([#70678](https://github.com/kubernetes/kubernetes/pull/70678), [@dashpole](https://github.com/dashpole))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.23.md

      Fixed skip `not found` nodes when reconciling LB backend address pools ([#105188](https://github.com/kubernetes/kubernetes/pull/105188), [@nilo19](https://github.com/nilo19))
    - Fixed occasional pod cgroup freeze when using cgroup v1 and systemd driver. ([#104528](https://github.com/kubernetes/kubernetes/pull/104528), [@kolyshkin](https://github.com/kolyshkin))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.19.md

    - Kubeadm: get k8s CI version markers from k8s infra bucket ([#98836](https://github.com/kubernetes/kubernetes/pull/98836), [@hasheddan](https://github.com/hasheddan)) [SIG Cluster Lifecycle and Release]
    - Kubelet should ignore cgroup driver check on Windows node. ([#98385](https://github.com/kubernetes/kubernetes/pull/98385), [@pacoxu](https://github.com/pacoxu)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
Back to top