Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 135 for rootfs (0.4 sec)

  1. pkg/kubelet/stats/cri_stats_provider_windows_test.go

    		t.Errorf("makeWinContainerStats() Memory = %v, want %v", got.Memory, expected.Memory)
    	}
    
    	if !reflect.DeepEqual(got.Rootfs, expected.Rootfs) {
    		t.Errorf("makeWinContainerStats() Rootfs = %v, want %v", got.Rootfs, expected.Rootfs)
    	}
    
    	// Log stats contain pointers to calculated resource values so we cannot use DeepEqual here
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 17 00:02:10 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cri_stats_provider_windows.go

    		result.Memory.AvailableBytes = uint64Ptr(0)
    		result.Memory.PageFaults = uint64Ptr(0)
    	}
    	if stats.WritableLayer != nil {
    		result.Rootfs.Time = metav1.NewTime(time.Unix(0, stats.WritableLayer.Timestamp))
    		if stats.WritableLayer.UsedBytes != nil {
    			result.Rootfs.UsedBytes = &stats.WritableLayer.UsedBytes.Value
    		}
    	}
    	var err error
    	fsID := stats.GetWritableLayer().GetFsId()
    	if fsID != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 07:03:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    		"/pod3-c1":      getTestContainerInfo(seedPod3Container1, pName3, namespace0, cName31),
    	}
    
    	freeRootfsInodes := rootfsInodesFree
    	totalRootfsInodes := rootfsInodes
    	rootfs := cadvisorapiv2.FsInfo{
    		Capacity:   rootfsCapacity,
    		Available:  rootfsAvailable,
    		InodesFree: &freeRootfsInodes,
    		Inodes:     &totalRootfsInodes,
    	}
    
    	freeImagefsInodes := imagefsInodesFree
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. OWNERS_ALIASES

        - thockin
        - xing-yang
      # emeritus:
      # - rootfs
      sig-storage-reviewers:
        - carlory
        - chrishenzie
        - gnufied
        - humblec
        - jsafrane
        - jingxu97
        - mattcary
        - mauriciopoppe
        - msau42
        - saikat-royc
        - xing-yang
      # emeritus:
      # - davidz627
      # - Jiawei0227
      # - rootfs
      # - verult
      sig-scheduling-maintainers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager_linux.go

    	// allocatable of the node
    	cm.nodeInfo = node
    
    	if localStorageCapacityIsolation {
    		rootfs, err := cm.cadvisorInterface.RootFsInfo()
    		if err != nil {
    			return fmt.Errorf("failed to get rootfs info: %v", err)
    		}
    		for rName, rCap := range cadvisor.EphemeralStorageCapacityFromFsInfo(rootfs) {
    			cm.capacity[rName] = rCap
    		}
    	}
    
    	// Ensure that node allocatable configuration is valid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/eviction_manager.go

    	signalToNodeReclaimFuncs map[evictionapi.Signal]nodeReclaimFuncs
    	// last observations from synchronize
    	lastObservations signalObservations
    	// dedicatedImageFs indicates if imagefs is on a separate device from the rootfs
    	dedicatedImageFs *bool
    	// splitContainerImageFs indicates if containerfs is on a separate device from imagefs
    	splitContainerImageFs *bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure.sh

      mv "${KUBE_HOME}/mounter.tar" /tmp/mounter.tar
      tar xf /tmp/mounter.tar -C "${CONTAINERIZED_MOUNTER_HOME}/rootfs"
      rm /tmp/mounter.tar
      mkdir -p "${CONTAINERIZED_MOUNTER_HOME}/rootfs/var/lib/kubelet"
    }
    
    # Install node problem detector binary.
    function install-node-problem-detector {
      if [[ -n "${NODE_PROBLEM_DETECTOR_VERSION:-}" ]]; then
          local -r npd_version="${NODE_PROBLEM_DETECTOR_VERSION}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_getters.go

    	if err != nil {
    		return mountedVolumes, err
    	}
    	// Only use IsLikelyNotMountPoint to check might not cover all cases. For CSI volumes that
    	// either: 1) don't mount or 2) bind mount in the rootfs, the mount check will not work as expected.
    	// We plan to remove this mountpoint check as a condition before deleting pods since it is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. pkg/kubelet/container/runtime.go

    	// If the container has specified the TerminationMessagePath, then
    	// this directory will be used to create and mount the log file to
    	// container.TerminationMessagePath
    	PodContainerDir string
    	// The type of container rootfs
    	ReadOnly bool
    	// hostname for pod containers
    	Hostname string
    }
    
    // VolumeInfo contains information about the volume.
    type VolumeInfo struct {
    	// Mounter is the volume's mounter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    		kubeadmcmdoptions.DryRun,
    		kubeadmcmdoptions.KubeconfigPath,
    		kubeadmcmdoptions.NodeName,
    		kubeadmcmdoptions.KubeconfigDir,
    		kubeadmcmdoptions.UploadCerts,
    		"print-join-command", "rootfs", "v", "log-file")
    	if allowedFlags.Has(flagName) {
    		return true
    	}
    	return strings.HasPrefix(flagName, "skip-")
    }
    
    // ValidateFeatureGates validates provided feature gates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top