Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 468 for Mounts (0.41 sec)

  1. pkg/volume/portworx/portworx.go

    }
    
    // SetUp attaches the disk and bind mounts to the volume path.
    func (b *portworxVolumeMounter) SetUp(mounterArgs volume.MounterArgs) error {
    	return b.SetUpAt(b.GetPath(), mounterArgs)
    }
    
    // SetUpAt attaches the disk and bind mounts to the volume path.
    func (b *portworxVolumeMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	notMnt, err := b.mounter.IsLikelyNotMountPoint(dir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/pod_container_manager_linux.go

    func (m *podContainerManagerImpl) GetAllPodsFromCgroups() (map[types.UID]CgroupName, error) {
    	// Map for storing all the found pods on the disk
    	foundPods := make(map[types.UID]CgroupName)
    	qosContainersList := [3]CgroupName{m.qosContainersInfo.BestEffort, m.qosContainersInfo.Burstable, m.qosContainersInfo.Guaranteed}
    	// Scan through all the subsystem mounts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. pkg/volume/util/volumepathhandler/volume_path_handler.go

    		if file.Mode()&os.ModeDevice == os.ModeDevice {
    			klog.Warningf("Warning: Map skipped because bind mount already exist on the path: %v", linkPath)
    			return nil
    		}
    
    		klog.Warningf("Warning: file %s is already exist but not mounted, skip creating file", linkPath)
    	}
    
    	// Bind mount file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cgroup_manager_linux.go

    }
    
    // CgroupSubsystems holds information about the mounted cgroup subsystems
    type CgroupSubsystems struct {
    	// Cgroup subsystem mounts.
    	// e.g.: "/sys/fs/cgroup/cpu" -> ["cpu", "cpuacct"]
    	Mounts []libcontainercgroups.Mount
    
    	// Cgroup subsystem to their mount location.
    	// e.g.: "cpu" -> "/sys/fs/cgroup/cpu"
    	MountPoints map[string]string
    }
    
    // cgroupManagerImpl implements the CgroupManager interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/volume_manager.go

    }
    
    // getExpectedVolumes returns a list of volumes that must be mounted in order to
    // consider the volume setup step for this pod satisfied.
    func getExpectedVolumes(pod *v1.Pod) []string {
    	mounts, devices, _ := util.GetPodVolumeNames(pod)
    	return mounts.Union(devices).UnsortedList()
    }
    
    // getExtraSupplementalGid returns the value of an extra supplemental GID as
    // defined by an annotation on a volume and a boolean indicating whether the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. pkg/kubelet/container/runtime.go

    	Name  string
    	Value string
    }
    
    // Mount represents a volume mount.
    type Mount struct {
    	// Name of the volume mount.
    	// TODO(yifan): Remove this field, as this is not representing the unique name of the mount,
    	// but the volume name only.
    	Name string
    	// Path of the mount within the container.
    	ContainerPath string
    	// Path of the mount on the host.
    	HostPath string
    	// Whether the mount is read-only.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/container_manager_linux.go

    	if err != nil {
    		return nil, err
    	} else if devOpts == nil {
    		return opts, nil
    	}
    	opts.Devices = append(opts.Devices, devOpts.Devices...)
    	opts.Mounts = append(opts.Mounts, devOpts.Mounts...)
    	opts.Envs = append(opts.Envs, devOpts.Envs...)
    	opts.Annotations = append(opts.Annotations, devOpts.Annotations...)
    	opts.CDIDevices = append(opts.CDIDevices, devOpts.CDIDevices...)
    	return opts, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. pkg/volume/iscsi/iscsi.go

    	// Try really hard to get the global mount of the volume, an error returned from here would
    	// leave the global mount still mounted, while marking the volume as unused.
    	// The volume can then be mounted on several nodes, resulting in volume
    	// corruption.
    	paths, err := ioutil.GetReliableMountRefs(mounter, mountPath)
    	if io.IsInconsistentReadError(err) {
    		klog.Errorf("Failed to read mount refs from /proc/mounts for %s: %s", mountPath, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    	// namespace. Each pod then mounts a random set of size `sharedConfigMapsPerPod`
    	// from that set. sharedConfigMapsPerPod is used if greater.
    	sharedConfigMapsPerNamespace int
    	// sharedSecretsPerNamespaces defines number of shared secrets in a given
    	// namespace. Each pod then mounts a random set of size `sharedSecretsPerPod`
    	// from that set. sharedSecretsPerPod is used if greater.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  10. cmd/endpoint.go

    func (l EndpointServerPools) HTTPS() bool {
    	return l[0].Endpoints.HTTPS()
    }
    
    // NEndpoints - returns number of endpoints
    func (l EndpointServerPools) NEndpoints() (count int) {
    	for _, ep := range l {
    		count += len(ep.Endpoints)
    	}
    	return count
    }
    
    // GridHosts will return all peers, including local.
    // in websocket grid compatible format, The local peer
    // is returned as a separate string.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top