Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 560 for rootfs (0.12 sec)

  1. pkg/volume/util/nested_volumes.go

    		// Examine each place where this volume is mounted
    		for _, myMountPoint := range myMountPoints {
    			if strings.HasPrefix(myMountPoint, parentPrefix) {
    				// Don't let a container trick us into creating directories outside of its rootfs
    				return fmt.Errorf("invalid container mount point %v", myMountPoint)
    			}
    			myMPSlash := myMountPoint + string(os.PathSeparator)
    			// The previously found nested mountpoints.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 12:19:17 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/options/generic.go

    // AddKubeadmOtherFlags adds flags that are not bound to a configuration file to the given flagset
    func AddKubeadmOtherFlags(flagSet *pflag.FlagSet, rootfsPath *string) {
    	flagSet.StringVar(
    		rootfsPath, "rootfs", *rootfsPath,
    		"The path to the 'real' host root filesystem. This will cause kubeadm to chroot into the provided path.",
    	)
    }
    
    // AddPatchesFlag adds the --patches flag to the given flagset
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/helpers.go

    				var usage *resource.Quantity
    				switch resourceToReclaim {
    				case v1.ResourceEphemeralStorage:
    					if containerStats.Rootfs != nil && containerStats.Rootfs.UsedBytes != nil && containerStats.Logs != nil && containerStats.Logs.UsedBytes != nil {
    						usage = resource.NewQuantity(int64(*containerStats.Rootfs.UsedBytes+*containerStats.Logs.UsedBytes), resource.BinarySI)
    					}
    				case v1.ResourceMemory:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  4. pkg/kubelet/server/stats/summary.go

    	rootStats, networkStats, err := sp.provider.GetCgroupStats("/", updateStats)
    	if err != nil {
    		return nil, fmt.Errorf("failed to get root cgroup stats: %v", err)
    	}
    	rootFsStats, err := sp.provider.RootFsStats()
    	if err != nil {
    		return nil, fmt.Errorf("failed to get rootFs stats: %v", err)
    	}
    	imageFsStats, containerFsStats, err := sp.provider.ImageFsStats(ctx)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. pkg/wasm/imagefetcher.go

    			),
    		)
    	}
    	return
    }
    
    // extractDockerImage extracts the Wasm binary from the
    // *compat* variant Wasm image with the standard Docker media type: application/vnd.docker.image.rootfs.diff.tar.gzip.
    // https://github.com/solo-io/wasm/blob/master/spec/spec-compat.md#specification
    func extractDockerImage(img v1.Image) ([]byte, error) {
    	layers, err := img.Layers()
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. pkg/kubelet/network/dns/dns.go

    }
    
    // SetupDNSinContainerizedMounter replaces the nameserver in containerized-mounter's rootfs/etc/resolv.conf with kubelet.ClusterDNS
    func (c *Configurer) SetupDNSinContainerizedMounter(mounterPath string) {
    	resolvePath := filepath.Join(strings.TrimSuffix(mounterPath, "/mounter"), "rootfs", "etc", "resolv.conf")
    	dnsString := ""
    	for _, dns := range c.clusterDNS {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/types.go

    }
    
    // DiskInfoProvider is responsible for informing the manager how disk is configured.
    type DiskInfoProvider interface {
    	// HasDedicatedImageFs returns true if the imagefs is on a separate device from the rootfs.
    	HasDedicatedImageFs(ctx context.Context) (bool, error)
    }
    
    // ImageGC is responsible for performing garbage collection of unused images.
    type ImageGC interface {
    	// DeleteUnusedImages deletes unused images.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.4.md

    * Validate volume spec before returning azure mounter ([#37018](https://github.com/kubernetes/kubernetes/pull/37018), [@rootfs](https://github.com/rootfs))
    * Networking test rewrite ([#31559](https://github.com/kubernetes/kubernetes/pull/31559), [@bprashanth](https://github.com/bprashanth))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top