Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 456 for Mounts (0.14 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    	if utilfeature.DefaultFeatureGate.Enabled(kubefeatures.UserNamespacesSupport) {
    		if cl.SecurityContext.NamespaceOptions.UsernsOptions != nil {
    			for _, mount := range config.Mounts {
    				mount.UidMappings = cl.SecurityContext.NamespaceOptions.UsernsOptions.Uids
    				mount.GidMappings = cl.SecurityContext.NamespaceOptions.UsernsOptions.Gids
    			}
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. pkg/volume/fc/fc.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 := util.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
    - 17.4K bytes
    - Viewed (0)
  3. cmd/kubelet/app/options/options.go

    	CloudProvider string
    
    	// cloudConfigFile is the path to the cloud provider configuration file.
    	// +optional
    	CloudConfigFile string
    
    	// rootDirectory is the directory path to place kubelet files (volume
    	// mounts,etc).
    	RootDirectory string
    
    	// The Kubelet will load its initial configuration from this file.
    	// The path may be absolute or relative; relative paths are under the Kubelet's current working directory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // `/foo` would allow `/foo`, `/foo/` and `/foo/bar`
      // `/foo` would not allow `/food` or `/etc/foo`
      optional string pathPrefix = 1;
    
      // when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.
      // +optional
      optional bool readOnly = 2;
    }
    
    // Eviction evicts a pod from its node subject to certain policies and safety constraints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. pkg/volume/local/local_test.go

    	}{
    		"empty": {
    			[]string{},
    			[]string{},
    		},
    		"not-pod-mount": {
    			[]string{"/mnt/outside"},
    			[]string{},
    		},
    		"pod-mount": {
    			[]string{filepath.Join(podsDir, "pod-mount")},
    			[]string{filepath.Join(podsDir, "pod-mount")},
    		},
    		"not-directory-prefix": {
    			[]string{podsDir + "pod-mount"},
    			[]string{},
    		},
    		"mix": {
    			[]string{"/mnt/outside",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 10:53:39 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  6. src/syscall/exec_linux.go

    				goto childerror
    			}
    			if _, _, err1 = RawSyscall(SYS_CLOSE, fd1, 0, 0); err1 != 0 {
    				goto childerror
    			}
    		}
    
    		// The unshare system call in Linux doesn't unshare mount points
    		// mounted with --shared. Systemd mounts / with --shared. For a
    		// long discussion of the pros and cons of this see debian bug 739593.
    		// The Go model of unsharing is more like Plan 9, where you ask
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. pkg/volume/emptydir/empty_dir_test.go

    		path           string
    		mounter        mount.Interface
    		expectedResult resource.Quantity
    		shouldFail     bool
    	}{
    		"Valid: existing 2Mi mount": {
    			path:           "/mnt/hugepages-2Mi",
    			mounter:        mounter,
    			shouldFail:     false,
    			expectedResult: resource.MustParse("2Mi"),
    		},
    		"Valid: existing 1Gi mount": {
    			path:           "/mnt/hugepages-1Gi",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. samples/security/spire/spire-quickstart.yaml

                - mountPath: /spiffe-csi
                  name: spiffe-csi-socket-dir
                # The volume containing mount points for containers.
                - mountPath: /var/lib/kubelet/pods
                  mountPropagation: Bidirectional
                  name: mountpoint-dir
              securityContext:
                privileged: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/cache/secretcache.go

    	totalTimeout = time.Second * 10
    )
    
    const (
    	// firstRetryBackOffDuration is the initial backoff time interval when hitting
    	// non-retryable error in CSR request or while there is an error in reading file mounts.
    	firstRetryBackOffDuration = 50 * time.Millisecond
    )
    
    // SecretManagerClient a SecretManager that signs CSRs using a provided security.Client. The primary
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    		WorkingDir:  container.WorkingDir,
    		Labels:      newContainerLabels(container, pod),
    		Annotations: newContainerAnnotations(container, pod, restartCount, opts),
    		Devices:     makeDevices(opts),
    		Mounts:      m.makeMounts(opts, container),
    		LogPath:     containerLogsPath,
    		Stdin:       container.Stdin,
    		StdinOnce:   container.StdinOnce,
    		Tty:         container.TTY,
    		Linux:       l,
    		Envs:        envs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
Back to top