Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 923 for Mounts (0.21 sec)

  1. pkg/volume/util/fsquota/common/quota_common_linux_impl.go

    	tmpMounts, err := os.CreateTemp("", "mounts")
    	if err != nil {
    		return "", fmt.Errorf("cannot create temporary mount file: %v", err)
    	}
    	tmpMountsFileName := tmpMounts.Name()
    	defer tmpMounts.Close()
    	defer os.Remove(tmpMountsFileName)
    
    	mounts, err := os.Open(MountsFile)
    	if err != nil {
    		return "", fmt.Errorf("cannot open mounts file %s: %v", MountsFile, err)
    	}
    	defer mounts.Close()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_windows_test.go

    			ContainerPath:  `C:\Windows\System32\drivers\etc\hosts`,
    			HostPath:       filepath.Join(podDir, "etc-hosts"),
    			ReadOnly:       false,
    			SELinuxRelabel: true,
    		},
    	}
    	assert.Equal(t, expectedMounts, mounts, "mounts of container %+v", container)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. releasenotes/notes/configmap-mount.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 31410
    releaseNotes:
    - |
      **Improved** configmaps to be read directly rather than from volume mounts. This improves the speed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 25 15:46:51 UTC 2021
    - 311 bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/controlplane/manifests.go

    func GetStaticPodSpecs(cfg *kubeadmapi.ClusterConfiguration, endpoint *kubeadmapi.APIEndpoint, proxyEnvs []kubeadmapi.EnvVar) map[string]v1.Pod {
    	// Get the required hostpath mounts
    	mounts := getHostPathVolumesForTheControlPlane(cfg)
    	if proxyEnvs == nil {
    		proxyEnvs = kubeadmutil.GetProxyEnvVars()
    	}
    	componentHealthCheckTimeout := kubeadmapi.GetActiveTimeouts().ControlPlaneComponentHealthCheck
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. releasenotes/notes/fsgroup.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 26882
    releaseNotes:
    - |
      **Improved** sidecar injection to not modify the pod `securityPolicy.fsGroup` which could conflict with existing settings and secret mounts.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 23 01:09:13 UTC 2020
    - 338 bytes
    - Viewed (0)
  6. cni/pkg/constants/constants.go

    )
    
    // Exposed for testing "constants"
    var (
    	CNIBinDir     = "/opt/cni/bin"
    	HostCNIBinDir = "/host/opt/cni/bin"
    	// Well-known subpath we will mount any needed host-mounts under,
    	// to preclude shadowing or breaking any pod-internal mounts
    	HostMountsPath = "/host"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. pkg/volume/util/fsquota/common/quota_common_linux.go

    // FirstQuota is the quota ID we start with.
    // XXXXXXX Need a better way of doing this...
    var FirstQuota QuotaID = 1048577
    
    // MountsFile is the location of the system mount data
    var MountsFile = "/proc/self/mounts"
    
    // MountParseRegexp parses out /proc/sys/self/mounts
    var MountParseRegexp = regexp.MustCompilePOSIX("^([^ ]*)[ \t]*([^ ]*)[ \t]*([^ ]*)") // Ignore options etc.
    
    // LinuxVolumeQuotaProvider returns an appropriate quota applier
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/container_manager_windows.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...)
    	return opts, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 11:25:36 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. src/internal/poll/fd_fsync_darwin.go

    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	return ignoringEINTR(func() error {
    		_, err := unix.Fcntl(fd.Sysfd, syscall.F_FULLFSYNC, 0)
    
    		// There are scenarios such as SMB mounts where fcntl will fail
    		// with ENOTSUP. In those cases fallback to fsync.
    		// See #64215
    		if err != nil && errors.Is(err, syscall.ENOTSUP) {
    			err = syscall.Fsync(fd.Sysfd)
    		}
    		return err
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:20:48 UTC 2024
    - 850 bytes
    - Viewed (0)
  10. plugin/pkg/admission/serviceaccount/admission_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Name:      serviceAccountName,
    			Namespace: ns,
    			UID:       types.UID(serviceAccountUID),
    		},
    	})
    
    	// Define a pod with a container that already mounts a volume at the API token path
    	// Admission should respect that
    	// Additionally, no volume should be created if no container is going to use it
    	pod := &api.Pod{
    		Spec: api.PodSpec{
    			Containers: []api.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top